| | |
| | | } |
| | | |
| | | @RequestMapping("/full/store/put/start") |
| | | @ManagerAuth(memo = "全板入库") |
| | | @ManagerAuth(memo = "WEB组托") |
| | | public R fullStorePutStart(@RequestBody FullStoreParam fullStoreParam) { |
| | | try { |
| | | String locNo = workService.startupFullPutStore(fullStoreParam, getUserId()); |
| | | return R.ok("入库启动成功").add(locNo); |
| | | } catch (Exception e){ |
| | | return R.error("入库启动失败==>"+e.getMessage()); |
| | | } |
| | | workService.webComb(fullStoreParam,getUserId()); |
| | | return R.ok("组托成功"); |
| | | // try { |
| | | // String locNo = workService.startupFullPutStore(fullStoreParam, getUserId()); |
| | | // return R.ok("入库启动成功").add(locNo); |
| | | // } catch (Exception e){ |
| | | // return R.error("入库启动失败==>"+e.getMessage()); |
| | | // } |
| | | } |
| | | |
| | | @RequestMapping("/plate/out/start") |