From fec9f42e00f2df68a2a20cbf132b17bdeed8e63a Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期一, 25 八月 2025 09:19:52 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 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 81e0d62..2fade75 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
@@ -209,12 +209,19 @@
public Result getSelectPrints( @RequestBody Map<String, Object> object){
return Result.seccess(finishedGoodsInventoryService.getSelectPrintSvs(object));
}
+ /*瑁呯鎵撳嵃鏌ヨ*/
+ @ApiOperation("搴撳瓨瑁呯鎵撳嵃鍐呭鏌ヨ鎺ュ彛")
+ @SaCheckPermission("createProductStock.search")
+ @PostMapping("/getInventoryPrints")
+ public Result getInventoryPrints( @RequestBody List<FinishedGoodsInventory> finishedGoodsInventories){
+ return Result.seccess(finishedGoodsInventoryService.getInventoryPrints(finishedGoodsInventories));
+ }
@ApiOperation("鎴愬搧瑁呯璋冩灦")
@SaCheckPermission("createProductStock.add")
- @PostMapping("/changeRack")
- public Result changeRack( @RequestBody FinishedGoodsInventory finishedGoodsInventory){
- return Result.seccess(finishedGoodsInventoryService.changeRack(finishedGoodsInventory));
+ @PostMapping("/changeRack/{user}")
+ public Result changeRack( @RequestBody FinishedGoodsInventory finishedGoodsInventory,@PathVariable String user){
+ return Result.seccess(finishedGoodsInventoryService.changeRack(finishedGoodsInventory,user));
}
}
--
Gitblit v1.8.0