Commit de965ea2 by 刘鑫

fix(ID1004096): 工单动态需要记录指派 (成功或失败均记录, 成功失败状态依赖BEAN)

1 parent 1adba534
...@@ -198,7 +198,7 @@ public class PeaOuterAPIServiceImpl implements PeaOuterAPIService { ...@@ -198,7 +198,7 @@ public class PeaOuterAPIServiceImpl implements PeaOuterAPIService {
memo = "FAIL:" + request.getReasonForFailure(); memo = "FAIL:" + request.getReasonForFailure();
} }
String msg = String.format(OrderEventEnum.reassignment.getMsg(), engineerInfo.getName()); String msg = String.format(OrderEventEnum.reassignment.getMsg(), engineerInfo.getName());
commonService.addOrderEvent(orderInfo.getOrderId(), null, "BEAN", "BEAN", OrderEventEnum.reassignment.getEvent(), commonService.addOrderEvent(orderInfo.getOrderId(), "", "BEAN", "BEAN", OrderEventEnum.reassignment.getEvent(),
msg, memo, LocalDateTime.now()); msg, memo, LocalDateTime.now());
OrderConfirmResult orderConfirmResult = new OrderConfirmResult(); OrderConfirmResult orderConfirmResult = new OrderConfirmResult();
orderConfirmResult.setOrderId(orderId); orderConfirmResult.setOrderId(orderId);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!