|
@@ -1095,7 +1095,8 @@
|
|
|
<el-table-column prop="netWeight" label="净重"> </el-table-column>
|
|
|
<el-table-column prop="loadTime" label="装货时间" width="130px">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="detailsAmount" label="运费" width="130px">
|
|
|
+
|
|
|
+ <el-table-column prop="saleRemarkByasm" label="摘要" width="100px">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="closeEntryId"
|
|
@@ -2174,7 +2175,8 @@ export default {
|
|
|
columnHiddenData: [],
|
|
|
consigneeCheckList: [],
|
|
|
showPopover: false,
|
|
|
- schemeMap: {}
|
|
|
+ schemeMap: {},
|
|
|
+ statusNumData: []
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
@@ -4854,6 +4856,9 @@ export default {
|
|
|
this.$message.info('取消输入')
|
|
|
})
|
|
|
},
|
|
|
+ getStatusNum(data) {
|
|
|
+ //未派发、取消
|
|
|
+ },
|
|
|
//查询,输入查询条件
|
|
|
onclick(obj) {
|
|
|
this.$store.commit('updateSaleSteelToggleIds', { isClear: 1 })
|
|
@@ -4875,6 +4880,8 @@ export default {
|
|
|
let saler = null
|
|
|
let easPrimaryId = null
|
|
|
let consigneeLoginName = null
|
|
|
+ let receiveAddress = null
|
|
|
+ obj.receiveAddress = null
|
|
|
if (this.startTime && this.endTime) {
|
|
|
startTime = sjTime(this.startTime)
|
|
|
endTime = sjTime(this.endTime)
|
|
@@ -4898,6 +4905,9 @@ export default {
|
|
|
capacityNo = this.input
|
|
|
} else if (this.screen == '分录ID') {
|
|
|
easPrimaryId = this.input
|
|
|
+ } else if (this.screen == '收货地址') {
|
|
|
+ receiveAddress = this.input
|
|
|
+ obj.receiveAddress = receiveAddress
|
|
|
} else {
|
|
|
remark = this.input
|
|
|
}
|
|
@@ -4916,15 +4926,21 @@ export default {
|
|
|
) {
|
|
|
capacityNo = this.input1
|
|
|
} else if (
|
|
|
- this.screen == '分录ID' &&
|
|
|
+ this.screen1 == '分录ID' &&
|
|
|
this.input1 != null &&
|
|
|
this.input1 != ''
|
|
|
) {
|
|
|
easPrimaryId = this.input1
|
|
|
+ } else if (
|
|
|
+ this.screen1 == '收货地址' &&
|
|
|
+ this.input1 != null &&
|
|
|
+ this.input1 != ''
|
|
|
+ ) {
|
|
|
+ receiveAddress = this.input1
|
|
|
+ obj.receiveAddress = receiveAddress
|
|
|
} else if (this.input1 != null && this.input1 != '') {
|
|
|
remark = this.input1
|
|
|
}
|
|
|
- console.log(remark)
|
|
|
this.axios
|
|
|
.post(
|
|
|
'/api/v1/tms/getSaleSteelReport?startTime=' +
|