diff --git a/src/api/distribution/zeroAdditionalRecording.js b/src/api/distribution/zeroAdditionalRecording.js new file mode 100644 index 00000000..bb1e45fc --- /dev/null +++ b/src/api/distribution/zeroAdditionalRecording.js @@ -0,0 +1,13 @@ +import request from '@/axios'; + +/** + * 初始化获取配载信息 + */ +export const postloadZeroSuppleList = (data = {}) => { + return request({ + url: '/api/logpm-trunkline/carsLoad/zeroSuppleList', + method: 'post', + data, + }); +}; + diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index b0d0239f..39c59ef0 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -486,7 +486,7 @@ const handleSelectionChange = (param: TableDataType[]) => { selectarr.value = param; selectarr.value.forEach(val => { selectCount.value.forEach( - item => (item.value += computeNumber(item.value, '+', val[item.prop]).result) + item => (item.value = computeNumber(item.value, '+', Number(val[item.prop] || 0)).result) ); }); emit('selection', param); diff --git a/src/option/distribution/zeroAdditionalRecording.js b/src/option/distribution/zeroAdditionalRecording.js index 74204d0c..73c935f6 100644 --- a/src/option/distribution/zeroAdditionalRecording.js +++ b/src/option/distribution/zeroAdditionalRecording.js @@ -15,9 +15,19 @@ export const oldColumnList = [ fixed: true, }, { - prop: 'orderCode', + prop: 'createTime', + label: '开单日期', + type: 2, + values: '', + width: '200', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'waybillNo', label: '运单号', - type: 6, + type: 2, values: '', width: '150', checkarr: [], @@ -28,7 +38,7 @@ export const oldColumnList = [ { prop: 'orderCode', label: '合同号', - type: 6, + type: 2, values: '', width: '150', checkarr: [], @@ -37,28 +47,8 @@ export const oldColumnList = [ head: false, }, { - prop: 'orderPackageCode', - label: '包条码', - type: 6, - values: '', - width: '200', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'driverName', - label: '计划目的地', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'driverPhone', - label: '目的地', + prop: 'destination', + label: '到站', type: 1, values: '', width: '130', @@ -67,8 +57,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'warehouseName', - label: '装卸状态', + prop: 'destinationWarehouseName', + label: '目的网点', type: 1, values: '', width: '130', @@ -77,8 +67,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'lineNameTitle', - label: '订单来源', + prop: 'shipperName', + label: '发货单位', type: 1, values: '', width: '130', @@ -87,8 +77,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'nodeNub', - label: '装车仓库', + prop: 'consignee', + label: '收货单位', type: 1, values: '', width: '130', @@ -97,8 +87,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'startTime', - label: '扫码时间', + prop: 'goodsName', + label: '品类名称', type: 1, values: '', width: '130', @@ -107,68 +97,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'endTime', - label: '装卸仓库', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'planVolume', - label: '卸车时间', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'billladingStatus', - label: '装车类型', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'chargeType', - label: '是否补录', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'totalFee', - label: '是否齐套', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'remark', - label: '托盘码', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'carrierName', - label: '一级品类', + prop: 'totalNum', + label: '件数', type: 1, values: '', width: '130', @@ -177,8 +107,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'waybillCount', - label: '二级品类', + prop: 'stockNum', + label: '在库件数', type: 1, values: '', width: '130', @@ -187,8 +117,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'totalNum', - label: '三级品类', + prop: 'price', + label: '单价', type: 1, values: '', width: '130', @@ -197,8 +127,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'totalWeight', - label: '物料名称', + prop: 'weight', + label: '重量(KG)', type: 1, values: '', width: '130', @@ -207,8 +137,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'totalVolume', - label: '装车扫描人', + prop: 'volume', + label: '体积', type: 1, values: '', width: '130', @@ -217,8 +147,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'createUserName', - label: '卸车人', + prop: 'totalFreight', + label: '运费', type: 1, values: '', width: '130', @@ -227,8 +157,8 @@ export const oldColumnList = [ sortable: true, }, { - prop: 'totalWeight', - label: '同步状态', + prop: 'remark', + label: '运单备注', type: 1, values: '', width: '130', @@ -256,9 +186,19 @@ export const newColumnList = [ fixed: true, }, { - prop: 'orderCode', + prop: 'createTime', + label: '开单日期', + type: 2, + values: '', + width: '200', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'waybillNo', label: '运单号', - type: 6, + type: 2, values: '', width: '150', checkarr: [], @@ -269,7 +209,7 @@ export const newColumnList = [ { prop: 'orderCode', label: '合同号', - type: 6, + type: 2, values: '', width: '150', checkarr: [], @@ -278,28 +218,8 @@ export const newColumnList = [ head: false, }, { - prop: 'orderPackageCode', - label: '包条码', - type: 6, - values: '', - width: '200', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'driverName', - label: '计划目的地', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'driverPhone', - label: '目的地', + prop: 'destination', + label: '到站', type: 1, values: '', width: '130', @@ -308,8 +228,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'warehouseName', - label: '装卸状态', + prop: 'destinationWarehouseName', + label: '目的网点', type: 1, values: '', width: '130', @@ -318,8 +238,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'lineNameTitle', - label: '订单来源', + prop: 'shipperName', + label: '发货单位', type: 1, values: '', width: '130', @@ -328,8 +248,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'nodeNub', - label: '装车仓库', + prop: 'consignee', + label: '收货单位', type: 1, values: '', width: '130', @@ -338,8 +258,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'startTime', - label: '扫码时间', + prop: 'goodsName', + label: '品类名称', type: 1, values: '', width: '130', @@ -348,68 +268,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'endTime', - label: '装卸仓库', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'planVolume', - label: '卸车时间', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'billladingStatus', - label: '装车类型', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'chargeType', - label: '是否补录', - type: 1, - values: '', - width: '130', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'totalFee', - label: '是否齐套', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'remark', - label: '托盘码', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'carrierName', - label: '一级品类', + prop: 'totalNum', + label: '件数', type: 1, values: '', width: '130', @@ -418,8 +278,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'waybillCount', - label: '二级品类', + prop: 'stockNum', + label: '在库件数', type: 1, values: '', width: '130', @@ -428,8 +288,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'totalNum', - label: '三级品类', + prop: 'price', + label: '单价', type: 1, values: '', width: '130', @@ -438,8 +298,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'totalWeight', - label: '物料名称', + prop: 'weight', + label: '重量(KG)', type: 1, values: '', width: '130', @@ -448,8 +308,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'totalVolume', - label: '装车扫描人', + prop: 'volume', + label: '体积', type: 1, values: '', width: '130', @@ -458,8 +318,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'createUserName', - label: '卸车人', + prop: 'totalFreight', + label: '运费', type: 1, values: '', width: '130', @@ -468,8 +328,8 @@ export const newColumnList = [ sortable: true, }, { - prop: 'totalWeight', - label: '同步状态', + prop: 'remark', + label: '运单备注', type: 1, values: '', width: '130', diff --git a/src/views/distribution/artery/zeroAdditionalRecording.vue b/src/views/distribution/artery/zeroAdditionalRecording.vue index e82a8e65..7a245f2b 100644 --- a/src/views/distribution/artery/zeroAdditionalRecording.vue +++ b/src/views/distribution/artery/zeroAdditionalRecording.vue @@ -5,7 +5,7 @@