From 73be6b08f5a94e71550fe788c5d74705daa91be0 Mon Sep 17 00:00:00 2001 From: guoyuji <guoyujie@ng.com> Date: 星期五, 22 三月 2024 16:48:07 +0800 Subject: [PATCH] 订单首页右键查询流程卡进度 --- north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java b/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java index 0daeba8..195de03 100644 --- a/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java +++ b/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java @@ -162,4 +162,39 @@ } } + + /*璁㈠崟浣滃簾*/ + @ApiOperation("璁㈠崟浣滃簾鎺ュ彛") + @PostMapping("/cancelFinishedGoodsInventoryToExamine") + public Result cancelFinishedGoodsInventoryToExamine( @RequestBody Map<String,Object> object){ + + if(finishedGoodsInventoryService.cancelFinishedGoodsInventoryToExamine(object)){ + return Result.seccess(); + + }else { + throw new ServiceException(Constants.Code_500,"棰嗗嚭澶辫触"); + + } + } + + /*鍑哄叆搴撹褰曟煡璇�*/ + @ApiOperation("鍑哄叆搴撹褰曟煡璇㈡帴鍙�") + @PostMapping("/getSelectStorageRecord/{pageNum}/{pageSize}/{selectDate}/{type}") + public Result getSelectStorageRecord(@PathVariable Integer pageNum, @PathVariable Integer pageSize,@PathVariable List<String> selectDate,@PathVariable String type, @RequestBody FinishedOperateLog finishedOperateLog){ + return Result.seccess(finishedGoodsInventoryService.getSelectStorageRecord(pageNum,pageSize,selectDate,type,finishedOperateLog)); + } + + /*鍑哄叆搴撹繑鍥�*/ + @ApiOperation("鍑哄叆搴撹繑鍥炴帴鍙�") + @PostMapping("/cancelFinishedGoodsInventoryStorage") + public Result cancelFinishedGoodsInventoryStorage( @RequestBody Map<String,Object> object){ + + if(finishedGoodsInventoryService.cancelFinishedGoodsInventoryStorage(object)){ + return Result.seccess(); + + }else { + throw new ServiceException(Constants.Code_500,"杩斿洖澶辫触"); + + } + } } -- Gitblit v1.8.0