| | |
| | | |
| | | } |
| | | |
| | | @RequestMapping("/pingKu/Shelves/auth") |
| | | @ManagerAuth(memo = "平库上架") |
| | | public R pingKuShelves(@RequestBody CombParam combParam){ |
| | | if (Cools.isEmpty(combParam.getLocno(), combParam.getCombMats())) { |
| | | throw new CoolException(BaseRes.PARAM); |
| | | } |
| | | mobileService.pingKuShelves(combParam, getUserId()); |
| | | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @RequestMapping("/pack/get/auth") |
| | | @ManagerAuth |
| | | public R packGet(@RequestParam String barcode){ |
| | |
| | | return R.ok("盘点成功"); |
| | | } |
| | | |
| | | @RequestMapping("/pda/adjust/auth") |
| | | @ManagerAuth(memo = "pda盘点") |
| | | public R pdaAdjust(@RequestBody pdaAdjustParam param){ |
| | | mobileService.pdaAdjust(param,getUserId()); |
| | | return R.ok("盘点成功"); |
| | | } |
| | | |
| | | @PostMapping("/order/out/pakout/auth") |
| | | @ManagerAuth(memo = "订单出库") |
| | | public synchronized R pakoutByOrder(@RequestBody JSONObject param) { |
| | |
| | | return R.ok("出库成功"); |
| | | } |
| | | |
| | | @GetMapping("/checkOut/submit/auth") |
| | | @ManagerAuth(memo = "盘点上传") |
| | | public R CheckOutUploadERP(@RequestParam String orderId){ |
| | | mobileService.inventoryUpload(orderId); |
| | | return R.ok("盘点成功"); |
| | | } |
| | | |
| | | |
| | | @RequestMapping("/ddd/ddd") |
| | | @ManagerAuth() |
| | | public R ddd() { |