|
@@ -130,12 +130,13 @@ public class RmsWarehouseController extends BaseRESTfulController {
|
|
Integer pageSize,
|
|
Integer pageSize,
|
|
Integer apiId,
|
|
Integer apiId,
|
|
String con) {
|
|
String con) {
|
|
-
|
|
|
|
- List<Map<String,Object>> listTotal = rmsWarehouseService.getWarehouseList(mapValue);
|
|
|
|
|
|
+ if(con != null && !"null".equals(con) && !"".equals(con)){
|
|
|
|
+ mapValue.put("con","%" + con + "%");
|
|
|
|
+ }
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
//分页查询数据
|
|
//分页查询数据
|
|
List<Map<String, Object>> columnList = rmsWarehouseService.getWarehouseList(mapValue);
|
|
List<Map<String, Object>> columnList = rmsWarehouseService.getWarehouseList(mapValue);
|
|
- PageListAdd data = columnDataUtil.tableColumnData(apiId, listTotal, columnList);
|
|
|
|
|
|
+ PageListAdd data = columnDataUtil.tableColumnData(apiId, null, columnList);
|
|
return success(data);
|
|
return success(data);
|
|
}
|
|
}
|
|
|
|
|