|
@@ -20,6 +20,12 @@ public interface SoSoDetailsMapper extends BaseMapper<SoSoDetails> {
|
|
|
* @param map startYearMonth endYearMonth vendorType
|
|
|
* @return
|
|
|
*/
|
|
|
- List<Map<String,Object>> getSO_SOMainReport(@Param("map")Map<String,Object> map);
|
|
|
+ IPage<SoSoDetails> getSO_SOMainReport(IPage<SoSoDetails> page, @Param("map")Map<String,Object> map);
|
|
|
+
|
|
|
+ List<SoSoDetails> QuerySO_SOMainReportBydepartment(@Param("department")String department,
|
|
|
+ @Param("vendorType")String vendorType,@Param("startYearMonth")String startYearMonth,@Param("endYearMonth")String endYearMonth);
|
|
|
+
|
|
|
+ List<SoSoDetails> QuerySO_SOMainReportBycustomer(@Param("customer")String customer,
|
|
|
+ @Param("vendorType")String vendorType,@Param("startYearMonth")String startYearMonth,@Param("endYearMonth")String endYearMonth);
|
|
|
|
|
|
}
|