|
@@ -210,18 +210,19 @@ public class SpecialExaminationContrller extends JeecgController<SmsCheckCustome
|
|
|
customerInfo.setCheckState(CheckStateCode.CHECK_STSTE_2);
|
|
customerInfo.setCheckState(CheckStateCode.CHECK_STSTE_2);
|
|
|
//获取关停标签
|
|
//获取关停标签
|
|
|
customerInfo.setShutdownLabel(specialExamination.getShutdownLabel().toString());
|
|
customerInfo.setShutdownLabel(specialExamination.getShutdownLabel().toString());
|
|
|
|
|
+ customerInfo.setShutdownLabelOther(specialExamination.getShutdownLabelOther());
|
|
|
customerInfo.setShutdownLabelDate(specialExamination.getShutdownTime());
|
|
customerInfo.setShutdownLabelDate(specialExamination.getShutdownTime());
|
|
|
boolean updateById = infoService.updateById(customerInfo);
|
|
boolean updateById = infoService.updateById(customerInfo);
|
|
|
if (updateById) {
|
|
if (updateById) {
|
|
|
// 发送邮件
|
|
// 发送邮件
|
|
|
EmailSendMsgHandle emailSendMsgHandle = new EmailSendMsgHandle();
|
|
EmailSendMsgHandle emailSendMsgHandle = new EmailSendMsgHandle();
|
|
|
//liutt3.bj@chinatelecom.cn
|
|
//liutt3.bj@chinatelecom.cn
|
|
|
- emailSendMsgHandle.SendMsg("liutt3.bj@chinatelecom.cn",
|
|
|
|
|
|
|
+ /* emailSendMsgHandle.SendMsg("liutt3.bj@chinatelecom.cn",
|
|
|
customerInfo.getCreateBy() +
|
|
customerInfo.getCreateBy() +
|
|
|
"提交复开申请", "工号:" + customerInfo.getStaffNo() +
|
|
"提交复开申请", "工号:" + customerInfo.getStaffNo() +
|
|
|
" 工单创建人:" + customerInfo.getCreateBy() +
|
|
" 工单创建人:" + customerInfo.getCreateBy() +
|
|
|
" 提交了复开号码为" + customerInfo.getSmsNumber() +
|
|
" 提交了复开号码为" + customerInfo.getSmsNumber() +
|
|
|
- "的复开申请,请及时进行稽核。");
|
|
|
|
|
|
|
+ "的复开申请,请及时进行稽核。");*/
|
|
|
}
|
|
}
|
|
|
return Result.OK("已成功提交申请");
|
|
return Result.OK("已成功提交申请");
|
|
|
}
|
|
}
|
|
@@ -672,8 +673,13 @@ public class SpecialExaminationContrller extends JeecgController<SmsCheckCustome
|
|
|
if (StringUtils.isNotEmpty(shutdownLabel)) {
|
|
if (StringUtils.isNotEmpty(shutdownLabel)) {
|
|
|
StringBuilder name = new StringBuilder();
|
|
StringBuilder name = new StringBuilder();
|
|
|
String[] split = shutdownLabel.split(",");
|
|
String[] split = shutdownLabel.split(",");
|
|
|
|
|
+ String nameByValue = "";
|
|
|
for (String lable : split) {
|
|
for (String lable : split) {
|
|
|
- String nameByValue = SpecialExaminationReopen.findNameByValue(lable);
|
|
|
|
|
|
|
+ if ("999".equals(lable)){
|
|
|
|
|
+ nameByValue = smsCheckCustomerInfo.getShutdownLabelOther();
|
|
|
|
|
+ }else {
|
|
|
|
|
+ nameByValue = SpecialExaminationReopen.findNameByValue(lable);
|
|
|
|
|
+ }
|
|
|
name.append(" ").append(nameByValue);
|
|
name.append(" ").append(nameByValue);
|
|
|
}
|
|
}
|
|
|
specialExaminationExport.setShutdownLabel(name.toString());
|
|
specialExaminationExport.setShutdownLabel(name.toString());
|