Commit 34bac347 by huangjinxin

fix:改约指定工程师处理

1 parent 01a22f2e
...@@ -275,6 +275,7 @@ public class OrderInfoServiceImpl implements OrderInfoService { ...@@ -275,6 +275,7 @@ public class OrderInfoServiceImpl implements OrderInfoService {
String teamId = order.getOrgTeamId(); String teamId = order.getOrgTeamId();
// 当天单变更技能直接人工指派 // 当天单变更技能直接人工指派
if (isToday && skillUpdate) { if (isToday && skillUpdate) {
if (order.getIsAppointEngineer() != 1) {
order.setOrgTeamId(null); order.setOrgTeamId(null);
order.setOrgGroupId(null); order.setOrgGroupId(null);
order.setEngineerPhone(null); order.setEngineerPhone(null);
...@@ -283,6 +284,7 @@ public class OrderInfoServiceImpl implements OrderInfoService { ...@@ -283,6 +284,7 @@ public class OrderInfoServiceImpl implements OrderInfoService {
order.setEngineerPhone(null); order.setEngineerPhone(null);
teamId = null; teamId = null;
sendMsg(order.getOrgBranchId(), order.getOrderId(), req.getExpectBegin()); sendMsg(order.getOrgBranchId(), order.getOrderId(), req.getExpectBegin());
}
} else { } else {
// a.已派人-改约到未来 // a.已派人-改约到未来
// i.自有:优先改约指派给当前工程师 // i.自有:优先改约指派给当前工程师
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!