mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
update 交易记录报文中如果卡号不为空,还按照离线卡启动处理
This commit is contained in:
@@ -1775,6 +1775,11 @@ public class OrderBasicInfoServiceImpl implements OrderBasicInfoService {
|
||||
String startMode = null;
|
||||
if (StringUtils.equals(transactionIdentifier, "01")) {
|
||||
startMode = StartModeEnum.APP.getValue();
|
||||
if(StringUtils.isNotBlank(data.getLogicCard())) {
|
||||
// 如果卡号不为空,还按照离线卡启动处理
|
||||
startMode = StartModeEnum.OFFLINE_CARD.getValue();
|
||||
orderBasicInfo.setLogicCard(data.getLogicCard());
|
||||
}
|
||||
} else if (StringUtils.equals(transactionIdentifier, "02")) {
|
||||
// 鉴权卡启动
|
||||
startMode = StartModeEnum.AUTH_CARD.getValue();
|
||||
|
||||
Reference in New Issue
Block a user