src/main/java/com/zy/asrs/controller/MobileController.java
@@ -365,9 +365,14 @@ @RequestMapping("/adjustNew/auth") @ManagerAuth(memo = "盘点") public synchronized R adjustNew(@RequestBody MobileAdjustParam combParam){ mobileService.adjustNew(combParam, getUserId()); mobileService.adjustNew(combParam, Boolean.FALSE, getUserId()); return R.ok("盘点成功"); } @RequestMapping("/adjustNew/v2/auth") @ManagerAuth(memo = "补货") public synchronized R adjustNewV2(@RequestBody MobileAdjustParam combParam){ mobileService.adjustNew(combParam, Boolean.TRUE, getUserId()); return R.ok("补货成功"); } }