| | |
| | | } |
| | | |
| | | LambdaQueryWrapper<Order> wrapper = new LambdaQueryWrapper<>(); |
| | | wrapper.eq(Order::getStatus, 1); |
| | | wrapper.in(Order::getStatus, 1,2); |
| | | wrapper.eq(Order::getHostId, getHostId()); |
| | | wrapper.in(Order::getDocType, typeList); |
| | | List<Order> orders = orderService.list(wrapper); |
| | |
| | | @RequestMapping("/barcode/list/pick") |
| | | @ManagerAuth(memo = "拣料入库途中并板") |
| | | @Transactional |
| | | public R orderOutListOrderPick(@RequestBody String barcode) { |
| | | public R orderOutListOrderPick(@RequestBody(required = false) String barcode) { |
| | | ArrayList<WrkMast> wrkMastArrayList = new ArrayList<>(); |
| | | if (Cools.isEmpty(barcode) || barcode.isEmpty()) { |
| | | List<WrkMast> wrkMasts = wrkMastService.list(new LambdaQueryWrapper<WrkMast>() |