|
@@ -55,6 +55,7 @@ public class WmspSendReceiveController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
String con,
|
|
|
+ Integer warehouseId,
|
|
|
String startTime,
|
|
|
String endTime
|
|
|
){
|
|
@@ -64,6 +65,7 @@ public class WmspSendReceiveController extends BaseRESTfulController {
|
|
|
if(mapValue == null){
|
|
|
mapValue =new HashMap<>();
|
|
|
}
|
|
|
+ mapValue.put("warehouseId",warehouseId);
|
|
|
DataChange.queryDataByDateTime(startTime, endTime, mapValue, sdfDateTime);//根据时间段查询数据
|
|
|
List<Map<String,Object>> sendReceiveList = iWmspSendReceiveService.getWmspSendReceiveService(mapValue);
|
|
|
|