This commit is contained in:
Leo
2025-11-19 15:58:40 +08:00
parent 7648b934ed
commit 35dcb20e4a
2 changed files with 3 additions and 2 deletions

View File

@@ -1045,7 +1045,7 @@ public class JDOrderController extends BaseController {
// 收货地址
pushContent.append("收货地址:").append(order.getAddress() != null ? order.getAddress() : "").append("\n");
// 运单号
pushContent.append("运单号:").append("\n").append("---------").append(waybillNo).append("\n");
pushContent.append("运单号:").append("\n").append("---------").append("\n").append("\n").append("\n").append(waybillNo).append("\n");
// 调用企业微信推送接口参考WxtsUtil的实现
String pushUrl = "https://wxts.van333.cn/wx/send/pdd";

View File

@@ -141,7 +141,8 @@ public class LogisticsServiceImpl implements ILogisticsService {
// 收货地址
pushContent.append("收货地址:").append(order.getAddress() != null ? order.getAddress() : "").append("\n");
// 运单号
pushContent.append("运单号:").append(waybillNo).append("\n");
pushContent.append("运单号:").append("\n").append("---------").append("\n").append("\n").append("\n").append(waybillNo).append("\n");
// 调用企业微信推送接口
JSONObject pushParam = new JSONObject();