Parcourir la source

增加客户确认时间

xuzhancheng il y a 5 jours
Parent
commit
b61e441350

+ 1 - 0
tz-module-pressure2/tz-module-pressure2-biz/src/main/java/cn/start/tz/module/pressure2/service/appointmentconfirmorder/AppointmentConfirmOrderServiceImpl.java

@@ -1117,6 +1117,7 @@ public class AppointmentConfirmOrderServiceImpl implements AppointmentConfirmOrd
         AppointmentConfirmOrderDO updateObj = new AppointmentConfirmOrderDO();
         updateObj.setId(confirmOrderVO.getId());
         updateObj.setStatus(confirmOrderVO.getStatus());
+        updateObj.setConfirmDate(LocalDate.now());
         if (confirmOrderVO.getRemark() != null) {
             updateObj.setRemark(confirmOrderVO.getRemark());
         }

+ 1 - 0
tz-module-pressure2/tz-module-pressure2-biz/src/main/java/cn/start/tz/module/pressure2/service/appointmentconfirmorder/PipeAppointmentConfirmOrderServiceImpl.java

@@ -1240,6 +1240,7 @@ public class PipeAppointmentConfirmOrderServiceImpl implements PipeAppointmentCo
         AppointmentConfirmOrderDO updateObj = new AppointmentConfirmOrderDO();
         updateObj.setId(confirmOrderVO.getId());
         updateObj.setStatus(confirmOrderVO.getStatus());
+        updateObj.setConfirmDate(LocalDate.now());
         if (confirmOrderVO.getRemark() != null) {
             updateObj.setRemark(confirmOrderVO.getRemark());
         }