回款
This commit is contained in:
parent
64ef9d6c78
commit
9159501711
@ -138,7 +138,14 @@ public class HomeServiceImpl implements HomeService {
|
|||||||
LocalDate startDate = (LocalDate)mapParam.get("startDate");
|
LocalDate startDate = (LocalDate)mapParam.get("startDate");
|
||||||
LocalDate endDate = (LocalDate)mapParam.get("endDate");
|
LocalDate endDate = (LocalDate)mapParam.get("endDate");
|
||||||
String date = (String)mapParam.get("date");
|
String date = (String)mapParam.get("date");
|
||||||
// payMapper.selectList(Wrappers.<PsContractPay>query().select("business_type", "sum(money) money").lambda())
|
|
||||||
|
List<PsContractInfo> list = psContractInfoMapper.selectList(Wrappers.<PsContractInfo>lambdaQuery()
|
||||||
|
.select(PsContractInfo::getContractCode).ne(PsContractInfo::getIsCancel, CommonStatusEnum.SUCCESS.getCode())
|
||||||
|
.ge(startDate != null,PsContractInfo::getApplyDate,startDate)
|
||||||
|
.le(endDate != null,PsContractInfo::getApplyDate,endDate));
|
||||||
|
|
||||||
|
|
||||||
|
payMapper.selectList(Wrappers.<PsContractPay>query().select("business_type", "sum(money) money").lambda());
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user