This commit is contained in:
YAS\29473
2025-11-11 08:40:03 +08:00
parent dc1ca2cbfb
commit c759305a02

View File

@@ -530,6 +530,12 @@ public class GuangXiPlatformServiceImpl implements ThirdPartyPlatformService {
}
// 拼装订单编号
String startChargeSeq = Constants.OPERATORID_JIANG_SU + orderCode + DateUtils.dateTimeNow(DateUtils.YYMMDD);
if (startChargeSeq.length() >27){
//将订单编号中的C去掉
String substring = StringUtils.substring(orderCode , 1);
startChargeSeq = Constants.OPERATORID_JIANG_SU + substring + DateUtils.dateTimeNow(DateUtils.YYMMDD);
}
ChargeOrderInfo chargeOrderInfo = ChargeOrderInfo.builder()
.startChargeSeq(startChargeSeq)
// .startChargeType()