Commit cb41909c by lzxry

cas过滤分摊天数为负数的

parent 174da970
......@@ -170,6 +170,14 @@ public class ShareIncomeServiceImpl implements ShareIncomeService {
}
}
if(ContractBranchUtil.getValue(platform).equals("type_three")){
for (Contract contract : contracts) {
if(contract.getIntervalUseDays()<0){
contracts.remove(contract);
}
}
}
logger.info("计算分摊收入耗时:{}", (System.currentTimeMillis() - start_));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment