From 390e2be7ba700d23a2e110a7aa4ecd9eac748619 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Tue, 9 Jul 2024 17:03:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=BB=9E=E7=95=99=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../distribution/distributionDeliveryList.js | 18 + src/option/storagecost/Categorypricingunit.js | 70 +++ src/option/storagecost/Financialreview.js | 432 ++++++++++++++++ .../storagecost/OrderTotalCostDetail.js | 466 ++++++++++++++++++ .../storagecost/ServiceProviderPrice.js | 95 ++++ src/option/storagecost/Traincostbreakdown.js | 379 ++++++++++++++ .../storagecost/WarehouseDeliveryCost.js | 280 +++++++++++ .../storagecost/WarehousePricingTemplate.js | 72 +++ src/option/storagecost/WarehouseTemplate.js | 102 ++++ src/router/views/index.js | 16 + .../Categorypricingunit.vue | 306 ++++++++++++ .../Deliverymaintenancecosts.vue | 71 +++ .../Financialreview.vue | 303 ++++++++++++ .../OrderTotalCostDetail.vue | 303 ++++++++++++ .../ServiceProviderPrice.vue | 303 ++++++++++++ .../Traincostbreakdown.vue | 303 ++++++++++++ .../WarehouseDeliveryCost.vue | 303 ++++++++++++ .../WarehousePricingTemplate.vue | 305 ++++++++++++ .../WarehouseTemplate.vue | 305 ++++++++++++ .../WarehouseTemplateHome.vue | 52 ++ .../distributionDeliveryListedt.vue | 29 ++ 21 files changed, 4513 insertions(+) create mode 100644 src/option/storagecost/Categorypricingunit.js create mode 100644 src/option/storagecost/Financialreview.js create mode 100644 src/option/storagecost/OrderTotalCostDetail.js create mode 100644 src/option/storagecost/ServiceProviderPrice.js create mode 100644 src/option/storagecost/Traincostbreakdown.js create mode 100644 src/option/storagecost/WarehouseDeliveryCost.js create mode 100644 src/option/storagecost/WarehousePricingTemplate.js create mode 100644 src/option/storagecost/WarehouseTemplate.js create mode 100644 src/views/cost/Deliverycostmanagement/Categorypricingunit.vue create mode 100644 src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue create mode 100644 src/views/cost/Deliverycostmanagement/Financialreview.vue create mode 100644 src/views/cost/Deliverycostmanagement/OrderTotalCostDetail.vue create mode 100644 src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue create mode 100644 src/views/cost/Deliverycostmanagement/Traincostbreakdown.vue create mode 100644 src/views/cost/Deliverycostmanagement/WarehouseDeliveryCost.vue create mode 100644 src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue create mode 100644 src/views/cost/Deliverycostmanagement/WarehouseTemplate.vue create mode 100644 src/views/cost/Deliverycostmanagement/WarehouseTemplateHome.vue diff --git a/src/api/distribution/distributionDeliveryList.js b/src/api/distribution/distributionDeliveryList.js index 3b35852e..f00a0635 100644 --- a/src/api/distribution/distributionDeliveryList.js +++ b/src/api/distribution/distributionDeliveryList.js @@ -378,4 +378,22 @@ export const $_loadingAbnormalPackageListTurnDown = params => { method: 'get', params, }); +}; + +//滞留 +export const $_retentionScan = data => { + return request({ + url: '/api/logpm-distribution/deliveryList/retentionPC', + method: 'post', + data, + }); +}; + +//滞留 +export const $_retentionSave = data => { + return request({ + url: '/api/logpm-distribution/deliveryList/retentionSave', + method: 'post', + data, + }); }; \ No newline at end of file diff --git a/src/option/storagecost/Categorypricingunit.js b/src/option/storagecost/Categorypricingunit.js new file mode 100644 index 00000000..3691bf12 --- /dev/null +++ b/src/option/storagecost/Categorypricingunit.js @@ -0,0 +1,70 @@ +export const columnList = [ + { + prop: 'checkbox', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: 'xh', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'a1', + label: '成本结算品类', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a2', + label: '维护状态 ', + type: 3, + values: '', + width: '150', + checkarr: [ + { + label: '已维护', + value: '已维护', + }, + { + label: '未维护', + value: '未维护', + }, + ], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a3', + label: '计价单位', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'createUserName', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: false, + }, + ]; + \ No newline at end of file diff --git a/src/option/storagecost/Financialreview.js b/src/option/storagecost/Financialreview.js new file mode 100644 index 00000000..ce3f22f9 --- /dev/null +++ b/src/option/storagecost/Financialreview.js @@ -0,0 +1,432 @@ +export const columnList = [ + { + prop: 'checkbox', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: 'xh', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'a1', + label: '预约计划编号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a2', + label: '车次号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a3', + label: '配送日期', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a4', + label: '目的仓', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a5', + label: '客户名称', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '订单自编号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '配送类型', + type: 1, + values: '', + width: '150', + checkarr: [ + { + label: '商配', + value: '商配', + }, + { + label: '市配', + value: '市配', + }, + ], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '财务审核状态', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '配送车辆', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '配送车型', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '承运方名称', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '承运方类型', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '配送司机', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '计划总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '订单总数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '库存品件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '装车总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '签收总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '配送总成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '配送成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '库存品配送成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '撕标签成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '上楼费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '分货费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '平移费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '装卸费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '公里数成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '补贴公里数成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '超区公里费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '点位补贴费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '保底费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '油费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '其他成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '备注', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '财务审核时间', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '财务审核人', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'createUserName', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: false, + }, +]; diff --git a/src/option/storagecost/OrderTotalCostDetail.js b/src/option/storagecost/OrderTotalCostDetail.js new file mode 100644 index 00000000..34fcbde7 --- /dev/null +++ b/src/option/storagecost/OrderTotalCostDetail.js @@ -0,0 +1,466 @@ +export const columnList = [ + { + prop: 'checkbox', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: 'xh', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'a1', + label: '品牌', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a2', + label: '订单编号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a3', + label: '运单号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a4', + label: '目的仓', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a5', + label: '发货单位', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '收货单位', + type: 3, + values: '', + width: '150', + checkarr: [ ], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '运单类型', + type: 1, + values: '', + width: '150', + checkarr: [ + { + label: '商配', + value: '商配', + }, + { + label: '市配', + value: '市配', + }, + ], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a8', + label: '开单时间', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a9', + label: '货物品类', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a11', + label: '品类件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a12', + label: '品类数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a13', + label: '总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a14', + label: '总重量', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a15', + label: '总体积', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a16', + label: '配送总成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a17', + label: '配送成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a17', + label: '撕标签成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a17', + label: '上楼费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '分货费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '平移费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '装卸费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '公里数成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '补贴公里数成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '超区公里费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '点位补贴费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '保底费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '油费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '其他成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '配送公里数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '超区公里费', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '发货人', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '发货人手机号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '发货地址', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '到站', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '发站仓', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '收货人', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '收货人手机号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '收货地址', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a18', + label: '客户车次', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + // { + // prop: 'createUserName', + // label: '操作', + // type: 6, + // values: '', + // width: '200', + // checkarr: [], + // fixed: 'right', + // sortable: false, + // }, + ]; + \ No newline at end of file diff --git a/src/option/storagecost/ServiceProviderPrice.js b/src/option/storagecost/ServiceProviderPrice.js new file mode 100644 index 00000000..f4907193 --- /dev/null +++ b/src/option/storagecost/ServiceProviderPrice.js @@ -0,0 +1,95 @@ +export const columnList = [ + { + prop: 'checkbox', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: 'xh', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'a1', + label: '承运方名称', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a2', + label: '服务仓', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a3', + label: '维护状态', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a4', + label: '承运方计价模板', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a5', + label: '修改时间', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '修改人', + type: 3, + values: '', + width: '150', + checkarr: [ ], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'createUserName', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: false, + }, + ]; + \ No newline at end of file diff --git a/src/option/storagecost/Traincostbreakdown.js b/src/option/storagecost/Traincostbreakdown.js new file mode 100644 index 00000000..1150f2a6 --- /dev/null +++ b/src/option/storagecost/Traincostbreakdown.js @@ -0,0 +1,379 @@ +export const columnList = [ + { + prop: 'checkbox', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: 'xh', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'a1', + label: '车次号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a2', + label: '配送日期', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a3', + label: '目的仓', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a4', + label: '客户名称', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a5', + label: '订单自编号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '配送类型', + type: 1, + values: '', + width: '150', + checkarr: [ + { + label: '商配', + value: '商配', + }, + { + label: '市配', + value: '市配', + },], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '配送车辆', + type: 1, + values: '', + width: '150', + checkarr: [ + ], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '配送车型', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '承运方名称', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '承运方类型', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '配送司机', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '计划总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '订单总数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '库存品件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '装车总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '签收总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '配送总成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '配送成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '库存品配送成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '撕标签成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '上楼费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '分货费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '平移费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '装卸费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '公里数成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '补贴公里数成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '超区公里费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '点位补贴费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '保底费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '油费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '其他成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'createUserName', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: false, + }, + ]; + \ No newline at end of file diff --git a/src/option/storagecost/WarehouseDeliveryCost.js b/src/option/storagecost/WarehouseDeliveryCost.js new file mode 100644 index 00000000..2d026a0e --- /dev/null +++ b/src/option/storagecost/WarehouseDeliveryCost.js @@ -0,0 +1,280 @@ +export const columnList = [ + { + prop: 'checkbox', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: 'xh', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'a1', + label: '目的仓', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a2', + label: '成本结算时间', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a3', + label: '车次总数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a4', + label: '计划总数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a5', + label: '订单总数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a6', + label: '计划总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '库存品件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '装车总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '签收总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '配送总成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '配送成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '库存品配送成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '上楼费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '分货费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '平移费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '装卸费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '公里数成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '补贴公里数成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '超区公里费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '点位补贴费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '保底费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '油费成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a7', + label: '其他成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'createUserName', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: false, + }, +]; diff --git a/src/option/storagecost/WarehousePricingTemplate.js b/src/option/storagecost/WarehousePricingTemplate.js new file mode 100644 index 00000000..295323ce --- /dev/null +++ b/src/option/storagecost/WarehousePricingTemplate.js @@ -0,0 +1,72 @@ +export const columnList = [ + { + prop: 'checkbox', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: 'xh', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'a1', + label: '仓库名称', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a2', + label: '仓库计价模板名称', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a3', + label: '修改时间', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a4', + label: '修改人', + type: 3, + values: '', + width: '150', + checkarr: [ ], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'createUserName', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: false, + }, + ]; + \ No newline at end of file diff --git a/src/option/storagecost/WarehouseTemplate.js b/src/option/storagecost/WarehouseTemplate.js new file mode 100644 index 00000000..2548faa6 --- /dev/null +++ b/src/option/storagecost/WarehouseTemplate.js @@ -0,0 +1,102 @@ +export const columnList = [ + { + prop: 'checkbox', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: 'xh', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'a1', + label: '品牌', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a2', + label: '一级品 ', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a3', + label: '二级品', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a4', + label: '三级品', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a4', + label: '维护状态', + type: 3, + values: '', + width: '150', + checkarr: [ + { + label: '已维护', + value: '已维护', + }, + { + label: '未维护', + value: '未维护', + }, + ], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'a5', + label: '成本结算品类', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'createUserName', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: false, + }, +]; diff --git a/src/router/views/index.js b/src/router/views/index.js index 9230e4c9..213d441d 100644 --- a/src/router/views/index.js +++ b/src/router/views/index.js @@ -1699,6 +1699,22 @@ export default [ }, ], }, + { + path: '/cost/Deliverycostmanagement/WarehouseTemplateHome', + component: Layout, + redirect: '/cost/Deliverycostmanagement/WarehouseTemplateHome', + children: [ + { + meta: { + i18n: 'dict', + keepAlive: true, + }, + path: '/cost/Deliverycostmanagement/WarehouseTemplateHome', + name: '仓库计价模板', + component: () => import('@/views/cost/Deliverycostmanagement/WarehouseTemplateHome.vue'), + }, + ], + }, // 工单新增重构页面 // { diff --git a/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue b/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue new file mode 100644 index 00000000..8337368c --- /dev/null +++ b/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue @@ -0,0 +1,306 @@ + + + + + + \ No newline at end of file diff --git a/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue b/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue new file mode 100644 index 00000000..0f2d6ff4 --- /dev/null +++ b/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue @@ -0,0 +1,71 @@ + + + + diff --git a/src/views/cost/Deliverycostmanagement/Financialreview.vue b/src/views/cost/Deliverycostmanagement/Financialreview.vue new file mode 100644 index 00000000..fb145b90 --- /dev/null +++ b/src/views/cost/Deliverycostmanagement/Financialreview.vue @@ -0,0 +1,303 @@ + + + + + + \ No newline at end of file diff --git a/src/views/cost/Deliverycostmanagement/OrderTotalCostDetail.vue b/src/views/cost/Deliverycostmanagement/OrderTotalCostDetail.vue new file mode 100644 index 00000000..309b8d74 --- /dev/null +++ b/src/views/cost/Deliverycostmanagement/OrderTotalCostDetail.vue @@ -0,0 +1,303 @@ + + + + + + \ No newline at end of file diff --git a/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue b/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue new file mode 100644 index 00000000..e43a3b83 --- /dev/null +++ b/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue @@ -0,0 +1,303 @@ + + + + + + \ No newline at end of file diff --git a/src/views/cost/Deliverycostmanagement/Traincostbreakdown.vue b/src/views/cost/Deliverycostmanagement/Traincostbreakdown.vue new file mode 100644 index 00000000..3c0c8f07 --- /dev/null +++ b/src/views/cost/Deliverycostmanagement/Traincostbreakdown.vue @@ -0,0 +1,303 @@ + + + + + + \ No newline at end of file diff --git a/src/views/cost/Deliverycostmanagement/WarehouseDeliveryCost.vue b/src/views/cost/Deliverycostmanagement/WarehouseDeliveryCost.vue new file mode 100644 index 00000000..aa82874e --- /dev/null +++ b/src/views/cost/Deliverycostmanagement/WarehouseDeliveryCost.vue @@ -0,0 +1,303 @@ + + + + + + \ No newline at end of file diff --git a/src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue b/src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue new file mode 100644 index 00000000..96ad2d4b --- /dev/null +++ b/src/views/cost/Deliverycostmanagement/WarehousePricingTemplate.vue @@ -0,0 +1,305 @@ + + + + + diff --git a/src/views/cost/Deliverycostmanagement/WarehouseTemplate.vue b/src/views/cost/Deliverycostmanagement/WarehouseTemplate.vue new file mode 100644 index 00000000..e257316e --- /dev/null +++ b/src/views/cost/Deliverycostmanagement/WarehouseTemplate.vue @@ -0,0 +1,305 @@ + + + + + diff --git a/src/views/cost/Deliverycostmanagement/WarehouseTemplateHome.vue b/src/views/cost/Deliverycostmanagement/WarehouseTemplateHome.vue new file mode 100644 index 00000000..00e537f2 --- /dev/null +++ b/src/views/cost/Deliverycostmanagement/WarehouseTemplateHome.vue @@ -0,0 +1,52 @@ + + + + + diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue index 4e8c9cb7..203f9d48 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue @@ -527,6 +527,16 @@ @click="signingReservationPackage(slotProps.scope.row)" >PC签收 + 滞留 @@ -958,6 +968,8 @@ import { $_deliveryZeroPackage, $_showInventoryPackgeCode, $_loadingAbnormalPackageListTurnDown, + $_retentionScan, + $_retentionSave, } from '@/api/distribution/distributionDeliveryList'; import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; import { exportBlob } from '@/api/common'; @@ -4590,6 +4602,23 @@ if($useStore.getters && $useStore.getters.permission){ }) }) }, + // 滞留 + retention(row){ + let data={ + barcode:row.orderPackageCode, + deliveryId:this.deliverydata.id, + retentionType:'1', + } + this.loading=true + $_retentionScan(data).then(res=>{ + console.log(res,'res'); + if(res.data.code ==200){ + this.getWrapdetails(this.wpage); + } + }).catch(()=>{ + this.loading=false + }) + }, // 包件批量签收 Batchpackages(){ if (!this.selectionList.length) {