| | |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.math.BigDecimal; |
| | | import java.net.URLEncoder; |
| | | import java.util.*; |
| | | |
| | |
| | | private MatService matService; |
| | | @Autowired |
| | | private ManLocDetlService manLocDetlService; |
| | | @RequestMapping(value = "/locDetl/list/barcode") |
| | | public R getBarcodeList(@RequestParam String barcode) { |
| | | List<ManLocDetl> manLocDetls = manLocDetlService.selectList(new EntityWrapper<ManLocDetl>().eq("zpallet", barcode)); |
| | | if (Cools.isEmpty(manLocDetls)){ |
| | | return R.error("托盘码数据为空"); |
| | | } |
| | | return R.ok(manLocDetls); |
| | | } |
| | | |
| | | @RequestMapping(value = "/locDetl/update") |
| | | public R update1() { |