From cee52c980719889fa1687cf9d0b4e05bb66ffa57 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Wed, 20 Mar 2024 13:45:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=BD=A6=E8=BE=86=E9=85=8D?= =?UTF-8?q?=E8=BD=BD=E7=BC=96=E8=BE=91=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/option/distribution/addVehicleStowage.js | 39 ++++------ src/option/waybill/WaybillOrderList.js | 22 ++++-- .../BasicdataGoodsAllocation.vue | 72 +++++++++---------- .../warehouse/tray/basicdataTray.vue | 57 +++++++++------ .../distribution/artery/AddVehicleStowage.vue | 17 +++-- .../distribution/artery/VehicleStowage.vue | 2 +- .../artery/VehicleStowageDetails.vue | 15 +++- 7 files changed, 124 insertions(+), 100 deletions(-) diff --git a/src/option/distribution/addVehicleStowage.js b/src/option/distribution/addVehicleStowage.js index d356453e..d784664f 100644 --- a/src/option/distribution/addVehicleStowage.js +++ b/src/option/distribution/addVehicleStowage.js @@ -754,8 +754,19 @@ export const detailsColumnList = [ sortable: true, }, { - prop: 'orderLineCost', - label: '订单干线成本', + prop: 'costPiece', + label: '按件成本', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + isshowSummary: true, + sortable: true, + }, + { + prop: 'costZhang', + label: '按比例成本', type: 2, values: '', width: '130', @@ -974,30 +985,6 @@ export const detailsColumnList = [ isColumnMerge: true, sortable: true, }, - { - prop: 'totalFee', - label: '单件成本 (按件)', - type: 2, - values: '', - width: '150', - checkarr: [], - fixed: false, - isshowSummary: true, - isColumnMerge: true, - sortable: true, - }, - { - prop: 'totalFee', - label: '单件成本 (按收入)', - type: 2, - values: '', - width: '150', - checkarr: [], - fixed: false, - isshowSummary: true, - isColumnMerge: true, - sortable: true, - }, // { // prop: 'freight', // label: '作废运单号', diff --git a/src/option/waybill/WaybillOrderList.js b/src/option/waybill/WaybillOrderList.js index 04f4dada..79bf82d0 100644 --- a/src/option/waybill/WaybillOrderList.js +++ b/src/option/waybill/WaybillOrderList.js @@ -175,9 +175,9 @@ export const columnList = [ fixed: false, sortable: true, }, - /* { - prop: 'carrierName', - label: '单价', + { + prop: 'costPiece', + label: '按件分摊', type: 1, values: '', width: '130', @@ -186,15 +186,25 @@ export const columnList = [ sortable: true, }, { - prop: 'carrierName', - label: '件数', + prop: 'costZhang', + label: '按比例分摊', type: 1, values: '', width: '130', checkarr: [], fixed: false, sortable: true, - }, */ + }, + { + prop: 'costNum', + label: '成本分摊件数', + type: 1, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'totalCount', label: '总数', diff --git a/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue b/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue index f9a4c4cb..68a48f39 100644 --- a/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue +++ b/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue @@ -1,5 +1,5 @@