|
@@ -174,11 +174,14 @@ public class SoSoDetailsController extends JeecgController<SoSoDetails, ISoSoDet
|
|
|
@AutoLog(value = "订单统计报表查询")
|
|
|
@ApiOperation(value="订单统计报表查询", notes="订单统计报表查询")
|
|
|
@GetMapping(value = "/getSO_SOMainReport")
|
|
|
- public Result<List<JSONObject>> getSO_SOMainReport(String vendorType,String startYearMonth,String endYearMonth){
|
|
|
+ public Result<List<JSONObject>> getSO_SOMainReport(String vendorType,String startYearMonth,String endYearMonth,
|
|
|
+ String department,String customer){
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
map.put("startYearMonth",startYearMonth);
|
|
|
map.put("endYearMonth",endYearMonth);
|
|
|
map.put("vendorType",vendorType);
|
|
|
+ map.put("department",department);
|
|
|
+ map.put("customer",customer);
|
|
|
Result<List<JSONObject>> result =new Result<>();
|
|
|
try {
|
|
|
List<Map<String,Object>> list=soSoDetailsService.getSO_SOMainReport(map);
|