fanzherong_v 1 month ago
parent
commit
0015414169

+ 3 - 2
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/bizappointmentrecord/service/impl/BizAppointmentRecordServiceImpl.java

@@ -516,12 +516,12 @@ public class BizAppointmentRecordServiceImpl extends ServiceImpl<BizAppointmentR
             BizOrder bizOrder = bizOrderService.getById(bizAppointmentRecordEditParam.getOrderId());
             if(ObjectUtil.isNotNull(bizOrder)){
                 if(!StringUtils.equals(bizOrder.getOrderStatus(),"3") && !StringUtils.equals(bizOrder.getOrderStatus(),"4")){
-                    throw new CommonException("当前订单不可预约!");
+                    throw new CommonException("当前订单不可调度!");
                 }
                 BizGoodsConf bizGoodsConf = bizGoodsConfService.getById(bizOrder.getDeliveryTimeId());
                 if(ObjectUtil.isNotNull(bizGoodsConf)){
                     if(new Date().getTime() > bizGoodsConf.getConfEndTime().getTime()){
-                        throw new CommonException("提货时间段已过,不可预约!");
+                        throw new CommonException("提货时间段已过,不可调度!");
                     }
                 }
             }
@@ -623,6 +623,7 @@ public class BizAppointmentRecordServiceImpl extends ServiceImpl<BizAppointmentR
                 }
             }
         }
+        log.info("地磅端对接:overId:"+bizAppointmentRecord.getOverId());
         if(ObjectUtil.isNotEmpty(bizAppointmentRecord.getOverId())){
             BizExcessConfig excessConfig = bizExcessConfigService.getById(bizAppointmentRecord.getOverId());
             if(ObjectUtil.isNotNull(excessConfig)){