|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <el-dialog top="0" width="1200px" title="详情" :visible.sync="dialogVisible" :before-close="detailClose"
|
|
|
+ <el-dialog top="0" width="1300px" title="详情" :visible.sync="dialogVisible" :before-close="detailClose"
|
|
|
:close-on-click-modal="false">
|
|
|
<div ref="detailsContentRef" class="details-content">
|
|
|
<!-- 基本信息 -->
|
|
@@ -337,6 +337,7 @@ export default {
|
|
|
return {
|
|
|
items: [
|
|
|
{ field: 'ReceiveTimeStr', label: '收货日期' },
|
|
|
+ { field: 'ForecastTime', label: '预报时间' },
|
|
|
{ field: 'CompanyName', label: '客户名称' },
|
|
|
{ field: 'CustomerOrderNo', label: '客户单号' },
|
|
|
{ field: 'SystemNo', label: '行运易单号' },
|
|
@@ -362,7 +363,8 @@ export default {
|
|
|
CustomerConfirmTotal: 0,
|
|
|
CustomerConfirmBillWeight: 0,
|
|
|
SplitWeightRate: 0,
|
|
|
- DeclarationMethod: undefined
|
|
|
+ DeclarationMethod: undefined,
|
|
|
+ ForecastTime: undefined,
|
|
|
}
|
|
|
], // 应收总额
|
|
|
saveLadding: false,
|
|
@@ -719,7 +721,7 @@ export default {
|
|
|
OrderId: this.itemsData.Id,
|
|
|
PublicExpressId: this.itemsData.CreateOrderChannelId,
|
|
|
CustomerId: this.itemsData.CustomerId,
|
|
|
- TransactionTime: this.itemsData.ReceiveTime,
|
|
|
+ TransactionTime: this.itemsData.ForecastTime || this.itemsData.ReceiveTime,
|
|
|
ZipCode: this.itemsData.ReceiverZipCode,
|
|
|
gWeight: this.propsTotalReceivableData[0].CustomerConfirmBillWeight,
|
|
|
}
|