|
|
@@ -99,12 +99,12 @@ public class PtlAgreementProductCostsNewServiceImpl extends ServiceImpl<PtlAgree
|
|
|
if (agreementProductQueryVo.getCostStartDate() != null)
|
|
|
{
|
|
|
ptlAgreementProductCostsNewLambdaQueryWrapper
|
|
|
- .ge(PtlAgreementProductCostsNew::getCostsStartDate, agreementProductQueryVo.getCostStartDate());
|
|
|
+ .le(PtlAgreementProductCostsNew::getCostsStartDate, agreementProductQueryVo.getCostStartDate());
|
|
|
}
|
|
|
|
|
|
if (agreementProductQueryVo.getCostsEndDate() != null) {
|
|
|
ptlAgreementProductCostsNewLambdaQueryWrapper
|
|
|
- .le(PtlAgreementProductCostsNew::getCostsEndDate, agreementProductQueryVo.getCostsEndDate());
|
|
|
+ .ge(PtlAgreementProductCostsNew::getCostsEndDate, agreementProductQueryVo.getCostsEndDate());
|
|
|
}
|
|
|
//是否有效 1失效 2 有效
|
|
|
if(agreementProductQueryVo.getIsEffective() != null){
|
|
|
@@ -1426,4 +1426,4 @@ public class PtlAgreementProductCostsNewServiceImpl extends ServiceImpl<PtlAgree
|
|
|
});
|
|
|
return pages;
|
|
|
}
|
|
|
-}
|
|
|
+}
|