|
@@ -206,7 +206,7 @@ public class SoSoDetailsController extends JeecgController<SoSoDetails, ISoSoDet
|
|
|
public Result<List<SoSoDetails>> QuerySO_SOMainReportBydepartment(String vendorType,String startYearMonth,String endYearMonth,
|
|
|
String department){
|
|
|
Result<List<SoSoDetails>> result =new Result<>();
|
|
|
- List<SoSoDetails> list = soSoDetailsService.QuerySO_SOMainReportBydepartment(vendorType, startYearMonth, endYearMonth, department);
|
|
|
+ List<SoSoDetails> list = soSoDetailsService.QuerySO_SOMainReportBydepartment(department,vendorType, startYearMonth, endYearMonth);
|
|
|
result.setResult(list);
|
|
|
return result;
|
|
|
}
|
|
@@ -220,7 +220,7 @@ public class SoSoDetailsController extends JeecgController<SoSoDetails, ISoSoDet
|
|
|
public Result<List<SoSoDetails>> QuerySO_SOMainReportBycustomer(String vendorType,String startYearMonth,String endYearMonth,
|
|
|
String customer){
|
|
|
Result<List<SoSoDetails>> result =new Result<>();
|
|
|
- List<SoSoDetails> list = soSoDetailsService.QuerySO_SOMainReportBycustomer(vendorType, startYearMonth, endYearMonth, customer);
|
|
|
+ List<SoSoDetails> list = soSoDetailsService.QuerySO_SOMainReportBycustomer(customer,vendorType, startYearMonth, endYearMonth);
|
|
|
result.setResult(list);
|
|
|
return result;
|
|
|
}
|