| | |
| | | return success(BeanUtils.toBean(list, MesProPalletRespVO.class)); |
| | | } |
| | | |
| | | @GetMapping("/unbound-list") |
| | | @Operation(summary = "获得未绑定批次的临时托盘列表(供批次新增/补录绑定托盘下拉使用)") |
| | | @PreAuthorize("@ss.hasPermission('mes:pro-pallet:query')") |
| | | public CommonResult<List<MesProPalletRespVO>> getUnboundPalletList() { |
| | | List<MesProPalletDO> list = palletService.getUnboundPalletList(); |
| | | return success(BeanUtils.toBean(list, MesProPalletRespVO.class)); |
| | | } |
| | | |
| | | @GetMapping("/export-excel") |
| | | @Operation(summary = "导出托盘码 Excel") |
| | | @PreAuthorize("@ss.hasPermission('mes:pro-pallet:export')") |