|
@@ -665,8 +665,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
orderAppealService.saveBatch(orderAppeal);
|
|
orderAppealService.saveBatch(orderAppeal);
|
|
orderAppeal.clear();
|
|
orderAppeal.clear();
|
|
}
|
|
}
|
|
-
|
|
|
|
- orderBase.updateById();
|
|
|
|
|
|
+ // orderBase.updateById();
|
|
|
|
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
@@ -2463,6 +2462,7 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
}
|
|
}
|
|
|
|
|
|
private void setOrderAppraisemessage(OrderBase orderBase, ItfTblAzAssignSatisfactionDownload s) {
|
|
private void setOrderAppraisemessage(OrderBase orderBase, ItfTblAzAssignSatisfactionDownload s) {
|
|
|
|
+ log.info("【联通短信评价回复】:{}",JSONObject.toJSONString(s));
|
|
if (orderBase.getAppraiseTime()==null &&
|
|
if (orderBase.getAppraiseTime()==null &&
|
|
(orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G7.getCode()) ||
|
|
(orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G7.getCode()) ||
|
|
orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G10.getCode()))){
|
|
orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G10.getCode()))){
|
|
@@ -2486,25 +2486,37 @@ public class AddInstallBusinessImpl implements AddInstallBusiness {
|
|
}
|
|
}
|
|
|
|
|
|
private void setOrderAppraisemessageSelf(OrderBase orderBase, ItfReceiveSms s) {
|
|
private void setOrderAppraisemessageSelf(OrderBase orderBase, ItfReceiveSms s) {
|
|
|
|
+ log.info("【联通短信评价回复】:{}",JSONObject.toJSONString(s));
|
|
if (orderBase.getAppraiseTime()==null &&
|
|
if (orderBase.getAppraiseTime()==null &&
|
|
(orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G7.getCode()) ||
|
|
(orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G7.getCode()) ||
|
|
orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G10.getCode()))){
|
|
orderBase.getOrderStatus().equals(GDOrderStatusEnum.INSTALL_STATUS_G10.getCode()))){
|
|
// 首评
|
|
// 首评
|
|
// 首次评价
|
|
// 首次评价
|
|
- orderBase.setAppraiseStatus(publicService.getAppraiseStatusT(s.getContent().trim()));
|
|
|
|
|
|
+ //orderBase.setAppraiseStatus(publicService.getAppraiseStatusT(s.getContent().trim()));
|
|
// 首次评价内容
|
|
// 首次评价内容
|
|
- orderBase.setAppraiseContent(s.getContent().trim());
|
|
|
|
|
|
+ //orderBase.setAppraiseContent(s.getContent().trim());
|
|
// 首次评价时间
|
|
// 首次评价时间
|
|
- orderBase.setAppraiseTime(s.getRecvTime());
|
|
|
|
|
|
+ //orderBase.setAppraiseTime(s.getRecvTime());
|
|
// 评价来源 无法区分
|
|
// 评价来源 无法区分
|
|
// orderBase.setAppraiseSource();
|
|
// orderBase.setAppraiseSource();
|
|
|
|
+
|
|
|
|
+ orderBaseService.lambdaUpdate()
|
|
|
|
+ .set(OrderBase::getAppraiseStatus,publicService.getAppraiseStatusT(s.getContent().trim()))
|
|
|
|
+ .set(OrderBase::getAppraiseContent,s.getContent().trim())
|
|
|
|
+ .set(OrderBase::getAppraiseTime,s.getRecvTime())
|
|
|
|
+ .eq(OrderBase::getId,orderBase.getId()).update();
|
|
} else {
|
|
} else {
|
|
// 追评评价状态
|
|
// 追评评价状态
|
|
- orderBase.setSecondAppraiseStatus(publicService.getAppraiseStatusT(s.getContent().trim()));
|
|
|
|
|
|
+ //orderBase.setSecondAppraiseStatus(publicService.getAppraiseStatusT(s.getContent().trim()));
|
|
// 追评评价内容
|
|
// 追评评价内容
|
|
- orderBase.setSecondContent(s.getContent().trim());
|
|
|
|
|
|
+ //orderBase.setSecondContent(s.getContent().trim());
|
|
// 追评评价时间
|
|
// 追评评价时间
|
|
- orderBase.setSecondAppraiseTime(s.getRecvTime());
|
|
|
|
|
|
+ //orderBase.setSecondAppraiseTime(s.getRecvTime());
|
|
|
|
+ orderBaseService.lambdaUpdate()
|
|
|
|
+ .set(OrderBase::getSecondAppraiseStatus,publicService.getAppraiseStatusT(s.getContent().trim()))
|
|
|
|
+ .set(OrderBase::getSecondContent,s.getContent().trim())
|
|
|
|
+ .set(OrderBase::getSecondAppraiseTime,s.getRecvTime())
|
|
|
|
+ .eq(OrderBase::getId,orderBase.getId()).update();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|