@@ -1233,7 +1233,7 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
//去除最后一个逗号
productName = productName.substring(0, productName.length() - 1);
//字符串超过6000个字...拼接!
- int length = 6000;
+ int length = 5000;
if(productName.length()>length){
productName = productName.substring(0, length)+"....";
}