解决首页销售额统计的bug

This commit is contained in:
季圣华
2020-01-15 00:13:19 +08:00
parent 6465b9662d
commit 69aaa15b6b
4 changed files with 39 additions and 2 deletions

View File

@@ -642,4 +642,8 @@ public class DepotHeadService {
public BigDecimal getBuyAndSaleStatistics(String type, String subType, Integer hasSupplier, String beginTime, String endTime) {
return depotHeadMapperEx.getBuyAndSaleStatistics(type, subType, hasSupplier, beginTime, endTime);
}
public BigDecimal getBuyAndSaleRetailStatistics(String type, String subType, Integer hasSupplier, String beginTime, String endTime) {
return depotHeadMapperEx.getBuyAndSaleRetailStatistics(type, subType, hasSupplier, beginTime, endTime);
}
}