Commit 4c74c839 by hzc

取消同期单位得分的计算

parent 93cb50ff
......@@ -196,11 +196,11 @@ public class StartCompareUnitCalActor extends AbstractActor{
})
.match(AfterExeConfirmMsg.class, afterExeConfirmMsg -> {
if (++numberOfAfterConfirm >= afterExeUnitSize) {//全部后执行的子actor全部返回
if (!calTypeExeList.isEmpty()) {
if (!calTypeExeList.isEmpty()&&calTypeExeList.get(0).getDate().equals(currentDate)) {
if ("0".equals(isTest)) {
logger.info("计算试运行对标单元单位评分......");
logger.info("计算试运行对标单元单位评分......date={}",calTypeExeList.get(0).getDate());
} else {
logger.info("计算对标单元单位评分......");
logger.info("计算对标单元单位评分......date={}",calTypeExeList.get(0).getDate());
}
for (CompareUnitDef unitDef : calTypeExeList) {
//试运行
......
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