| | |
| | | return R.ok("任务重新入库,目标库位:" + locNo); |
| | | } |
| | | |
| | | //并板出库出库站点 |
| | | @RequestMapping("/available/takeClamp/site") |
| | | @ManagerAuth() |
| | | public R availableTakeClampSite(){ |
| | | List<Map<String, Object>> result = new ArrayList<>(); |
| | | List<Integer> outSite = basDevpService.getAvailableOutSite(104); |
| | | for (Integer siteId : outSite) { |
| | | Map<String, Object> map = new HashMap<>(); |
| | | map.put("siteId", siteId); |
| | | map.put("desc", siteId + "(并板出库口)"); |
| | | result.add(map); |
| | | } |
| | | return R.ok().add(result); |
| | | } |
| | | |
| | | //并板出库 |
| | | @RequestMapping("/locClamp/out/start") |
| | | @ManagerAuth(memo = "并板出库") |
| | | public R locClampOutStart(@RequestBody StockOutParam param) { |
| | | workService.locClampOut(param, getUserId()); |
| | | return R.ok("出库启动成功"); |
| | | } |
| | | } |