mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-19 18:45:03 +08:00
update
This commit is contained in:
@@ -898,7 +898,9 @@ public class JsowellTask {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
int index = orderNo.indexOf("_");
|
int index = orderNo.indexOf("_");
|
||||||
return index > 0 ? orderNo.substring(0, index) : orderNo;
|
String orderCode = index > 0 ? orderNo.substring(0, index) : orderNo;
|
||||||
|
// order_code 字段长度限制为 16,超长则无法匹配订单,返回 null
|
||||||
|
return orderCode.length() <= 16 ? orderCode : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private String normalizeHeader(String header) {
|
private String normalizeHeader(String header) {
|
||||||
|
|||||||
Reference in New Issue
Block a user