| | |
| | | // } |
| | | // } |
| | | 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") |
| | |
| | | map.remove("row"); |
| | | } |
| | | } |
| | | applyBeBatchFilter(map, wrapper); |
| | | convert(map, wrapper); |
| | | if (!row.equals("")) { |
| | | wrapper.and() |