From 51a96d19d25d0d6f93ff4067649775f2b33efdb5 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Mon, 5 Aug 2024 20:26:44 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=A7=E4=BD=8D=E5=A2=9E=E5=8A=A0=E9=99=90?= =?UTF-8?q?=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/distribution/CreateOrder.js | 1 - src/api/storagecost/index.js | 34 +++++ src/option/reportforms/DeliveryDetails.js | 44 ++++++ src/option/reportforms/Selfpickupreport.js | 22 +++ src/option/storagecost/Categorypricingunit.js | 8 +- .../goodsArea/basicdataGoodsArea.vue | 18 ++- .../goodsShelf/basicdataGoodsShelf.vue | 56 ++++++- .../goodsShelf/basicdataGoodsShelfView.vue | 1 + .../Basicconfiguration.vue | 7 +- .../Categorypricingunit.vue | 139 ++++++++++++++---- .../WarehousePricingTemplate.vue | 84 ++++++++--- .../WarehouseTemplateHome.vue | 17 +-- .../deliverylist/distributionDeliveryList.vue | 12 +- .../warehouseWarehouseingAddReceipt.vue | 1 - 14 files changed, 359 insertions(+), 85 deletions(-) diff --git a/src/api/distribution/CreateOrder.js b/src/api/distribution/CreateOrder.js index d82f3ab1..b2a3d6df 100644 --- a/src/api/distribution/CreateOrder.js +++ b/src/api/distribution/CreateOrder.js @@ -18,7 +18,6 @@ export const postOpenOrderOpenWaybill = data => { return request({ url: '/api/logpm-trunkline/openOrder/openWaybill', method: 'post', - data, }); }; diff --git a/src/api/storagecost/index.js b/src/api/storagecost/index.js index d4f4e8b5..845de824 100644 --- a/src/api/storagecost/index.js +++ b/src/api/storagecost/index.js @@ -149,3 +149,37 @@ export const $_WarehouseTemplateHome = data => { data, }); }; +// 配送-删除模板 +export const $_removeTemplate = params => { + return request({ + url: '/api/logpm-statisticsdata/expenseDispatchPriceTemplate/remove', + method: 'post', + params, + }); +}; + +// 配送-模板-品牌品类计价单位 +export const $_expenseDispatchPriceUnit = params => { + return request({ + url: '/api/logpm-statisticsdata/expenseDispatchPriceUnit/page', + method: 'get', + params, + }); +}; + +// 配送-模板-品牌品类计价单位-新增 +export const $_expenseDispatchPriceUnitadd = data => { + return request({ + url: '/api/logpm-statisticsdata-zqb/expenseDispatchPriceUnit/save', + method: 'post', + data, + }); +}; +// 配送-模板-品牌品类计价单位-修改 +export const $_expenseDispatchPriceUnitupdate = data => { + return request({ + url: '/api/logpm-statisticsdata-zqb/expenseDispatchPriceUnit/update', + method: 'post', + data, + }); +}; \ No newline at end of file diff --git a/src/option/reportforms/DeliveryDetails.js b/src/option/reportforms/DeliveryDetails.js index a43ca5d8..4c126461 100644 --- a/src/option/reportforms/DeliveryDetails.js +++ b/src/option/reportforms/DeliveryDetails.js @@ -59,6 +59,50 @@ export const columnList = [ sortable: true, head: false, }, + { + prop: 'brand', + label: '品牌', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'signNum', + label: '签收数量', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'loadingMode', + label: '装车方式', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'signType', + label: '签收方式', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, { prop: 'type', label: '配送类型', diff --git a/src/option/reportforms/Selfpickupreport.js b/src/option/reportforms/Selfpickupreport.js index 84762884..391bbfb9 100644 --- a/src/option/reportforms/Selfpickupreport.js +++ b/src/option/reportforms/Selfpickupreport.js @@ -36,6 +36,28 @@ export const columnList = [ sortable: true, head: false, }, + { + prop: 'brand', + label: '品牌', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'signNum', + label: '签收数量', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, { prop: 'consigneeUnit', label: '收货单位', diff --git a/src/option/storagecost/Categorypricingunit.js b/src/option/storagecost/Categorypricingunit.js index 8856fb6e..f4ee8533 100644 --- a/src/option/storagecost/Categorypricingunit.js +++ b/src/option/storagecost/Categorypricingunit.js @@ -7,7 +7,7 @@ export const columnList = [ fixed: true, }, { - prop: 'xh', + prop: '', label: '序号', type: 12, values: '', @@ -15,7 +15,7 @@ export const columnList = [ fixed: true, }, { - prop: 'a1', + prop: 'categoryId', label: '成本结算品类', type: 2, values: '', @@ -27,7 +27,7 @@ export const columnList = [ }, { - prop: 'a3', + prop: 'unit', label: '计价单位', type: 1, values: '', @@ -38,7 +38,7 @@ export const columnList = [ head: false, }, { - prop: 'createUserName', + prop: '', label: '操作', type: 6, values: '', diff --git a/src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue b/src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue index 060a9463..4e2bb0cc 100644 --- a/src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue +++ b/src/views/basicdata/warehouse/goodsArea/basicdataGoodsArea.vue @@ -173,7 +173,15 @@ - + + + + @@ -614,6 +622,7 @@ export default { this.buttonLoadingList.handleSubmitBtn = true; try { if (!this.form.id) { + this.form.headline=this.form.headline+'区' add(this.form).then(() => { this.box = false; this.isShow = false; @@ -624,6 +633,7 @@ export default { }); }); } else { + this.form.headline=this.form.headline+'区' update(this.form).then(() => { this.box = false; this.onLoad(this.page); @@ -659,6 +669,7 @@ export default { this.aaa = true; getDetail(row.id).then(res => { this.form = res.data.data; + this.headlineinput(this.form.headline) console.log(this.form); }); }, @@ -693,6 +704,11 @@ export default { }); }); }, + headlineinput(data){ + if (data.includes('区')) { + this.form.headline = data.replace('区', ''); + } + }, handleExports() { if (this.selectionList.length === 0) { this.$message.warning('请选择至少一条数据'); diff --git a/src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue b/src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue index 70a71309..e9bc5a7d 100644 --- a/src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue +++ b/src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue @@ -166,11 +166,19 @@ - + /> --> + + + @@ -338,7 +346,8 @@ width="600px" v-model="dialogVisible" > -
+
@@ -375,10 +384,17 @@ > @@ -106,36 +124,27 @@