This commit is contained in:
雷欧(林平凡)
2025-06-11 11:31:26 +08:00
parent e47f24d3ba
commit e2e139ae7e

View File

@@ -2222,7 +2222,7 @@ public class JDUtil {
sb.append("型号\n");
}
for (int i = 0; i < 3; i++) {
wxUtil.sendTextMessage(fromWxid, "[炸弹] [炸弹] [炸弹] 录单警告!!! 缺少 \n " + sb, 1, fromWxid, false);
wxUtil.sendTextMessage(fromWxid, "[炸弹] [炸弹] [炸弹] 录单警告!!! \n缺少表单字段 \n" + sb, 1, fromWxid, true);
}
return;
}
@@ -2231,7 +2231,7 @@ public class JDUtil {
int count = byAddress.size();
StringBuilder sb = new StringBuilder();
sb.append(DateUtil.dateToStr(byAddress.get(0).getOrderTime(), "yyyy-MM-dd HH:mm:ss"));
wxUtil.sendTextMessage(fromWxid, "[炸弹] [炸弹] [炸弹] 录单警告!!! 收货地址重复,请确认 !!! \n 此地址共" + count + "个订单,最近的订单时间:" + sb, 1, fromWxid, false);
wxUtil.sendTextMessage(fromWxid, "[炸弹] [炸弹] [炸弹] 录单警告!!! \n收货地址重复,请确认 !!! \n 此地址共" + count + "个订单,最近的订单时间:" + sb, 1, fromWxid, true);
}
JDOrder byRemark = jdOrderRepository.findByRemark(jdOrder.getRemark());
String info;