mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
后管订单详情页面新增vin码字段
This commit is contained in:
@@ -430,6 +430,9 @@ public class OrderService {
|
||||
order.setTransactionCode(orderBasicInfo.getTransactionCode());
|
||||
order.setOrderStatus(orderBasicInfo.getOrderStatus());
|
||||
order.setLogicCard(orderBasicInfo.getLogicCard());
|
||||
if (orderBasicInfo.getVinCode() != null) {
|
||||
order.setVinCode(orderBasicInfo.getVinCode());
|
||||
}
|
||||
String describe = orderBasicInfoService.transformOrderStatusDescribe(orderBasicInfo.getOrderStatus(), orderBasicInfo.getPayStatus());
|
||||
order.setOrderStatusDescribe(describe);
|
||||
order.setStartTime(DateUtils.formatDateTime(orderBasicInfo.getChargeStartTime()));
|
||||
|
||||
@@ -59,6 +59,7 @@ public class OrderDetailInfoVO {
|
||||
private String orderStatus; // 订单状态
|
||||
private String orderStatusDescribe; // 订单状态描述
|
||||
private String logicCard; // 卡号
|
||||
private String vinCode; // vin号
|
||||
private String startTime; // 充电开始时间
|
||||
private String endTime; // 充电结束时间
|
||||
private String stopReasonMsg; // 停止原因
|
||||
|
||||
@@ -71,6 +71,10 @@
|
||||
orderInfo.logicCard
|
||||
}}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="vin码">{{
|
||||
orderInfo.vinCode
|
||||
}}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="订单状态描述">{{
|
||||
orderInfo.orderStatusDescribe
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user