Commit 385c258f by huangjinxin

fix:改约排班优化

1 parent 1b0f5292
......@@ -323,7 +323,7 @@ public class OrderInfoServiceImpl implements OrderInfoService {
OrgGroupEntity groupEntity = orgGroupDao.getByGroupId(order.getOrgGroupId());
//是否今天
boolean isToday = CommonUtil.isCutoff(expectBegin, orgTeamEntity.getWorkOff()) == 1;
boolean isToday = CommonUtil.isCutoff(expectBegin, ObjectUtil.isNotNull(orgTeamEntity) ? orgTeamEntity.getWorkOff() : null) == 1;
//是否到人
boolean isBelong = StringUtils.isNotEmpty(order.getEngineerCode());
// 是否网点
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!