| | |
| | | import com.core.common.Cools; |
| | | import com.core.common.DateUtils; |
| | | import com.core.common.R; |
| | | import com.zy.asrs.entity.FrozenParam; |
| | | import com.zy.asrs.entity.LocDetl; |
| | | import com.zy.asrs.entity.LocOwner; |
| | | import com.zy.asrs.entity.Mat; |
| | |
| | | // } |
| | | // } |
| | | excludeTrash(param); |
| | | applyBeBatchFilter(param, wrapper); |
| | | convert(param, wrapper); |
| | | allLike(LocDetl.class, param.keySet(), wrapper, condition); |
| | | if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} |
| | |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | private <T> void applyBeBatchFilter(Map<String, Object> map, EntityWrapper<T> wrapper) { |
| | | Object beBatchObj = map.remove("beBatch"); |
| | | if (beBatchObj == null) { |
| | | beBatchObj = map.remove("be_batch"); |
| | | } |
| | | if (beBatchObj == null) { |
| | | return; |
| | | } |
| | | String beBatch = String.valueOf(beBatchObj).trim(); |
| | | if (Cools.isEmpty(beBatch)) { |
| | | return; |
| | | } |
| | | if ("1".equals(beBatch)) { |
| | | wrapper.eq("be_batch", 1); |
| | | return; |
| | | } |
| | | if ("0".equals(beBatch)) { |
| | | wrapper.andNew().isNull("be_batch").or().eq("be_batch", 0); |
| | | return; |
| | | } |
| | | wrapper.eq("be_batch", beBatch); |
| | | } |
| | | |
| | | @RequestMapping(value = "/locDetl/add/auth") |
| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping(value = "/locDetl/frozenInventory") |
| | | @ManagerAuth(memo = "库存冻结") |
| | | public R frozen(@RequestBody List<FrozenParam> param){ |
| | | if (param.size() == 0) { |
| | | return R.parse("未收到数据"); |
| | | } |
| | | |
| | | return locDetlService.frozenInventory(param); |
| | | } |
| | | |
| | | @PostMapping(value = "/locDetl/unfreezeInventory") |
| | | @ManagerAuth(memo = "库存解冻") |
| | | public R unfreeze(@RequestBody List<FrozenParam> param){ |
| | | if (param.size() == 0) { |
| | | return R.parse("未收到数据"); |
| | | } |
| | | |
| | | return locDetlService.unfreezeInventory(param); |
| | | } |
| | | |
| | | @RequestMapping(value = "/locDetl/export/auth") |
| | | @ManagerAuth(memo = "库位明细导出") |
| | | public R export(@RequestBody JSONObject param){ |
| | |
| | | map.remove("row"); |
| | | } |
| | | } |
| | | applyBeBatchFilter(map, wrapper); |
| | | convert(map, wrapper); |
| | | if (!row.equals("")) { |
| | | wrapper.and() |