mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 04:55:08 +08:00
update 查询日志列表
This commit is contained in:
@@ -202,7 +202,7 @@ public class PileMsgRecordServiceImpl implements PileMsgRecordService {
|
||||
OrderBasicInfo orderBasicInfo = orderBasicInfoService.getOrderInfoByTransactionCode(transactionCode);
|
||||
|
||||
// 订单号
|
||||
String orderCode = orderBasicInfo.getOrderCode();
|
||||
String orderCode = orderBasicInfo != null ? orderBasicInfo.getOrderCode() : "无";
|
||||
|
||||
// 充电度数
|
||||
String totalElectricity = jsonObject.getString("totalElectricity");
|
||||
@@ -220,6 +220,7 @@ public class PileMsgRecordServiceImpl implements PileMsgRecordService {
|
||||
String pileConnectorCode = jsonObject.getString("pileSn") + jsonObject.getString("connectorCode");
|
||||
|
||||
return "订单号:" + orderCode + ", " +
|
||||
"交易流水号:" + transactionCode + ", " +
|
||||
"枪口编号:" + pileConnectorCode + ", " +
|
||||
"充电度数:" + totalElectricity + ", " +
|
||||
"消费金额:" + consumptionAmount + ", " +
|
||||
|
||||
Reference in New Issue
Block a user