bug:企标入库后,更新企标计划表

This commit is contained in:
wxyclub
2023-08-09 16:17:31 +08:00
parent 9f663904e2
commit 8b25043d73
@@ -554,6 +554,15 @@ public class ActSarItemsBussEOService {
}
}
}
// 更新企标计划状态
String esPlanId = (String) standMap.get("planId");
if (StringUtils.isNotBlank(esPlanId)) {
EsRevisePlan esRevisePlan = esRevisePlanDao.selectById(esPlanId);
esRevisePlan.setPlanStatus("4");
esRevisePlan.setStandId(sarBussionessStand.getId());
esRevisePlan.setActualTime(new Date());
esRevisePlanDao.updateById(esRevisePlan);
}
}
return bussId;