From 9c9547f024bafaca402eb427ea046fd67511bc05 Mon Sep 17 00:00:00 2001 From: zjj <3272660260@qq.com> Date: 星期六, 17 六月 2023 16:53:05 +0800 Subject: [PATCH] #自动完成工作档时更新拣货单数量、状态 --- src/main/java/com/zy/asrs/controller/MobileController.java | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/zy/asrs/controller/MobileController.java b/src/main/java/com/zy/asrs/controller/MobileController.java index 093bdd2..e4f39f9 100644 --- a/src/main/java/com/zy/asrs/controller/MobileController.java +++ b/src/main/java/com/zy/asrs/controller/MobileController.java @@ -342,20 +342,22 @@ //骞冲簱pda涓婃灦 @RequestMapping("/manDetl/in") + @ManagerAuth(memo = "璁㈠崟涓婃灦") public R manDetlAdd(@RequestBody JSONObject json){ if (json == null){ return R.error("浼犲叆鏁版嵁涓虹┖"); } - return mobileService.manDetlIn(json , getUser()); + return mobileService.manDetlIn(json, getUser()); } //骞冲簱pda涓嬫灦 @RequestMapping("/manDetl/out") + @ManagerAuth(memo = "璁㈠崟涓嬫灦") public R manDetlDelete(@RequestBody JSONObject json){ if (json == null){ return R.error("浼犲叆鏁版嵁涓虹┖"); } - return mobileService.manDetlOut(json,getUser()); + return mobileService.manDetlOut(json , getUser()); } } -- Gitblit v1.9.1