|
@@ -69,6 +69,9 @@ public class OyeResultController extends BaseRESTfulController {
|
|
|
mapValue.put("saleAreaRemark",saleAreaRemark);
|
|
|
}
|
|
|
}
|
|
|
+ if (mapValue.containsKey("isExcel")) {
|
|
|
+ return success(oyeResultService.getOyeInboundResult(mapValue));
|
|
|
+ }
|
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
|
//分页查询数据
|
|
|
List<Map<String, Object>> columnList = oyeResultService.getOyeInboundResult(mapValue);
|
|
@@ -100,6 +103,9 @@ public class OyeResultController extends BaseRESTfulController {
|
|
|
mapValue.put("saleAreaRemark",saleAreaRemark);
|
|
|
}
|
|
|
}
|
|
|
+ if (mapValue.containsKey("isExcel")) {
|
|
|
+ return success(oyeResultService.getOyeOutboundResult(mapValue));
|
|
|
+ }
|
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
|
//分页查询数据
|
|
|
List<Map<String, Object>> columnList = oyeResultService.getOyeOutboundResult(mapValue);
|
|
@@ -131,6 +137,9 @@ public class OyeResultController extends BaseRESTfulController {
|
|
|
mapValue.put("saleAreaRemark",saleAreaRemark);
|
|
|
}
|
|
|
}
|
|
|
+ if (mapValue.containsKey("isExcel")) {
|
|
|
+ return success(oyeResultService.getOyeRealTimeResult(mapValue));
|
|
|
+ }
|
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
|
//分页查询数据
|
|
|
List<Map<String, Object>> columnList = oyeResultService.getOyeRealTimeResult(mapValue);
|