This commit is contained in:
雷欧(林平凡)
2024-11-21 16:19:55 +08:00
parent 18cb39f1e0
commit 624d2c8d40

View File

@@ -641,6 +641,13 @@ public class JDUtils {
content.append("订单不存在"); content.append("订单不存在");
} }
} }
if (order.startsWith("SKU")){
order = order.replace("SKU", "");
String[] split = order.split("\r\n");
for (String s : split) {
content.append("https://item.jd.com/").append(s).append(".html").append("\r\n");
}
}
} else { } else {
try { try {
sendOrderToWxByOrderJD("菜单"); sendOrderToWxByOrderJD("菜单");