|
|
@@ -103,10 +103,8 @@ public class ErpProdIODetailServiceImpl implements ErpProdIODetailService {
|
|
|
List<TradeCount> totalTrades = apCheckService.getDueTrade(enUU, keyword.getCustomerUU());
|
|
|
erpProdIo.setTotalCount(totalTrades);
|
|
|
// 本月应收
|
|
|
- if (null != checkDate) {
|
|
|
- List<TradeCount> thisMonthTrades = apCheckService.getThisMonthTrade(enUU, keyword.getCustomerUU(), checkDate, fromDate, endDate);
|
|
|
- erpProdIo.setThisMonthCount(thisMonthTrades);
|
|
|
- }
|
|
|
+ List<TradeCount> thisMonthTrades = apCheckService.getThisMonthTrade(enUU, keyword.getCustomerUU(), checkDate, fromDate, endDate);
|
|
|
+ erpProdIo.setThisMonthCount(thisMonthTrades);
|
|
|
return erpProdIo;
|
|
|
}
|
|
|
|