|
@@ -246,7 +246,7 @@ public class TbBusinessService extends ServiceImpl<TbBusinessMapper, TbBusiness>
|
|
|
this.updateById(tbBusiness);
|
|
|
storeMsg(tbBusiness.getCustomerId(), "业务订单【" + tbBusiness.getNo() + "】已支付" + DateUtil.now() + "。");
|
|
|
//发送消息
|
|
|
- String text = "您的费用已支付,业务单号["+ tbBusiness.getNo() + "]";
|
|
|
+ String text = "业务订单【" + tbBusiness.getNo() + "】已支付" + DateUtil.now() + "。";
|
|
|
tbNoticesService.sendNotice(tbBusiness.getId(), tbBusiness.getNo(), tbBusiness.getCustomerId(), text);
|
|
|
}
|
|
|
|
|
@@ -256,6 +256,9 @@ public class TbBusinessService extends ServiceImpl<TbBusinessMapper, TbBusiness>
|
|
|
business.setConfirmInput(1).setConfirmInputTime(new Date()).setConfirmInputBy(StpUserUtil.getAdmin().getName());
|
|
|
this.updateById(business);
|
|
|
storeMsg(business.getCustomerId(), "业务订单【" + business.getNo() + "】已确认" + DateUtil.now() + "。");
|
|
|
+ //发送消息
|
|
|
+ String text = "业务订单【" + business.getNo() + "】已确认" + DateUtil.now() + "。";
|
|
|
+ tbNoticesService.sendNotice(business.getId(), business.getNo(), business.getCustomerId(), text);
|
|
|
});
|
|
|
}
|
|
|
|
|
@@ -267,7 +270,7 @@ public class TbBusinessService extends ServiceImpl<TbBusinessMapper, TbBusiness>
|
|
|
this.updateById(business);
|
|
|
storeMsg(business.getCustomerId(), "业务订单【" + business.getNo() + "】已确认支付" + DateUtil.now() + "。");
|
|
|
//发送消息
|
|
|
- String text = "您的费用已支付,业务单号["+ business.getNo() + "]";
|
|
|
+ String text = "业务订单【" + business.getNo() + "】已确认支付" + DateUtil.now() + "。";
|
|
|
tbNoticesService.sendNotice(business.getId(), business.getNo(), business.getCustomerId(), text);
|
|
|
});
|
|
|
}
|
|
@@ -296,7 +299,7 @@ public class TbBusinessService extends ServiceImpl<TbBusinessMapper, TbBusiness>
|
|
|
tbPassRecordService.addOrUpdate(tbBusiness.getId(), tbBusiness.getCustomerId(), tbBusiness.getCustomerName(),
|
|
|
tbBusiness.getChinaCarNo(), 2, tbBusiness.getChinaCarInTime(), null, "中国车");
|
|
|
//发送消息
|
|
|
- String text = "您的车辆已入场,业务单号["+ tbBusiness.getNo() + "]";
|
|
|
+ String text = "业务订单【"+tbBusiness.getNo()+"】已开始入场作业"+ DateUtil.now()+"。";
|
|
|
tbNoticesService.sendNotice(tbBusiness.getId(), tbBusiness.getNo(), tbBusiness.getCustomerId(), text);
|
|
|
|
|
|
}
|
|
@@ -316,7 +319,7 @@ public class TbBusinessService extends ServiceImpl<TbBusinessMapper, TbBusiness>
|
|
|
tbBusiness.getChinaCarNo(), 3,
|
|
|
tbBusiness.getChinaCarInTime(), tbBusiness.getChinaCarOutTime(), "中国车");
|
|
|
//发送消息
|
|
|
- String text = "您的车辆已离场,业务单号["+ tbBusiness.getNo() + "]";
|
|
|
+ String text = "业务订单【"+tbBusiness.getNo()+"】已完成作业离场"+ DateUtil.now()+"。";
|
|
|
tbNoticesService.sendNotice(tbBusiness.getId(), tbBusiness.getNo(), tbBusiness.getCustomerId(), text);
|
|
|
|
|
|
}
|