From 34f21bf5901ed3c4e956fd9d7561adde93c8b012 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Tue, 29 Oct 2024 22:50:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=9C=AA=E5=85=A5=E5=BA=93?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E5=B7=B2=E7=9F=A5bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/aftersales/aftersalesWorkOrder.js | 2 +- .../distribution/distributionStockArticle.js | 24 +- src/option/distribution/Unstoreddetails.js | 187 +++++++ .../distributionStockArticleSelf.js | 2 +- src/router/views/index.js | 21 + src/views/Pricesystem/ListOfPriceSystems.vue | 42 +- .../aftersales/aftersalesWorkOrderTemp.vue | 180 +++++-- .../inventory/delivery/Unstoreddetails.vue | 492 ++++++++++++++++++ .../delivery/distributionStockArticle.vue | 23 +- 9 files changed, 899 insertions(+), 74 deletions(-) create mode 100644 src/option/distribution/Unstoreddetails.js create mode 100644 src/views/distribution/inventory/delivery/Unstoreddetails.vue diff --git a/src/api/aftersales/aftersalesWorkOrder.js b/src/api/aftersales/aftersalesWorkOrder.js index b0dd300b..e8630911 100644 --- a/src/api/aftersales/aftersalesWorkOrder.js +++ b/src/api/aftersales/aftersalesWorkOrder.js @@ -467,7 +467,7 @@ export const $_updateArbitrateStatu = (data) => { // 导出报表 export const $_exportAftersalesWorkOrder = (params) => { return request({ - url: '/api/logpm-aftersales/aftersalesWorkOrder/export-aftersalesWorkOrder', + url: '/api/logpm-aftersales/aftersalesWorkOrder/exportWorkOrder', method: 'get', params, responseType: 'blob', diff --git a/src/api/distribution/distributionStockArticle.js b/src/api/distribution/distributionStockArticle.js index bc5c2c70..8c1e75e3 100644 --- a/src/api/distribution/distributionStockArticle.js +++ b/src/api/distribution/distributionStockArticle.js @@ -123,7 +123,13 @@ export const getDetail = (current, size, params) => { }, }); }; - +export const $_getDetail = (params) => { + return request({ + url: '/api/logpm-distribution/distributionStockArticle/detail', + method: 'get', + params + }); +}; export const getQueryQRCode = params => { return request({ url: '/api/logpm-distribution/distributionStockArticle/getShowTemplate', @@ -456,4 +462,18 @@ export const $_splitOrder = (row) => { method: 'post', data: row }) -} \ No newline at end of file +} +export const $_getOrderWarehouseDetail = (params) => { + return request({ + url: '/api/logpm-distribution/distributionStockArticle/getOrderWarehouseDetail', + method: 'get', + params + }) +} + +export const $_orderPackageCode = orderPackageCode => { + return request({ + url: `/api/logpm-warehouse/api/orderInfo/orderPackageCode/${orderPackageCode}`, + method: 'get', + }); +}; \ No newline at end of file diff --git a/src/option/distribution/Unstoreddetails.js b/src/option/distribution/Unstoreddetails.js new file mode 100644 index 00000000..ebf4df37 --- /dev/null +++ b/src/option/distribution/Unstoreddetails.js @@ -0,0 +1,187 @@ +export const columnList = [ + { + prop: '', + label: '序号', + type: 0, + values: '', + width: 55, + checkarr: [], + fixed: true, + }, + + { + prop: 'waybillNumber', + label: '运单号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'orderCode', + label: '订单自编号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'warehouse', + label: '仓库', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'orderPackageStatusName', + label: '包件状态', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + + { + prop: 'orderPackageCode', + label: '包条码', + type: 1, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'goodsAllocation', + label: '货位信息', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'pallet', + label: '所在托盘', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'firsts', + label: '一级品', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'second', + label: '二级品', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'thirdProduct', + label: '三级品', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'materialName', + label: '物料名称', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'materialCode', + label: '物料编码', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + + { + prop: 'quantity', + label: '数量', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'warehouseEntryTimeEnd', + label: '入库时间', + type: 1, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'trainNumber', + label: '客户车次号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'sendWarehouseName', + label: '发站仓', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: '', + label: '操作', + type: 6, + values: '', + width: '230', + checkarr: [], + fixed: 'right', + hide: true, + }, +]; diff --git a/src/option/distribution/distributionStockArticleSelf.js b/src/option/distribution/distributionStockArticleSelf.js index eb6a5570..6abeab29 100644 --- a/src/option/distribution/distributionStockArticleSelf.js +++ b/src/option/distribution/distributionStockArticleSelf.js @@ -84,7 +84,7 @@ export const columnList = [ { prop: 'notReceived', label: '未入库数量', - type: 1, + type: 13, values: '', width: '100', checkarr: [], diff --git a/src/router/views/index.js b/src/router/views/index.js index 14fa626b..62fae612 100644 --- a/src/router/views/index.js +++ b/src/router/views/index.js @@ -1174,6 +1174,27 @@ export default [ }, ], }, + { + path: '/distribution/inventory/delivery/Unstoreddetails', + component: Layout, + redirect: '/distribution/inventory/delivery/Unstoreddetails', + children: [ + { + path: '/distribution/inventory/delivery/Unstoreddetails', + name: '未入订单库详情', + meta: { + i18n: 'dict', + keepAlive: true, + }, + props: route => ({ + name: route.query.name, + id: route.query.id, + }), + component: () => + import('@/views/distribution/inventory/delivery/Unstoreddetails.vue'), + }, + ], + }, { path: '/distribution/inventory/distributionStockListDetails', component: Layout, diff --git a/src/views/Pricesystem/ListOfPriceSystems.vue b/src/views/Pricesystem/ListOfPriceSystems.vue index befb4399..fabe98ca 100644 --- a/src/views/Pricesystem/ListOfPriceSystems.vue +++ b/src/views/Pricesystem/ListOfPriceSystems.vue @@ -97,7 +97,13 @@ width="60%" :before-close="handleClose" > - + @@ -646,11 +652,11 @@ const deletetails = row => { const handleClient = async row => { try { details.loadingObj.pageLoading = true; - let _data={ + let _data = { brandId: row.brandId, - current:1, - size:500, - } + current: 1, + size: 500, + }; const res = await $_getpriceTemplate(_data); const { code, data } = res.data; @@ -693,7 +699,12 @@ const addition = async () => { let _row = details.selectionList[0]; console.log(_row, '_row'); details.loadingObj.pageLoading = true; - const res = await $_getpriceTemplate({ brandId: _row.brandId }); + let _data = { + current: 1, + size: 500, + brandId: _row.brandId, + }; + const res = await $_getpriceTemplate(_data); details.loadingObj.pageLoading = false; const { code, data } = res.data; if (code == 200) { @@ -774,19 +785,18 @@ const handleSubmitBasic = () => { } // 基础配置样式 -.el_from_basicVisted{ -.el-form-item{ - width: 40%; - :deep( .el-date-editor){ - width: 100% !important; - } - :deep(.el-select){ - width: 100% !important; +.el_from_basicVisted { + .el-form-item { + width: 40%; + :deep(.el-date-editor) { + width: 100% !important; + } + :deep(.el-select) { + width: 100% !important; + } } } -} - :deep(.el-date-editor) { height: 100% !important; } diff --git a/src/views/aftersales/aftersalesWorkOrderTemp.vue b/src/views/aftersales/aftersalesWorkOrderTemp.vue index fd2be0ef..1d1bdce2 100644 --- a/src/views/aftersales/aftersalesWorkOrderTemp.vue +++ b/src/views/aftersales/aftersalesWorkOrderTemp.vue @@ -128,7 +128,7 @@ @size-change="sizeChange" @current-change="currentChange" :current-page="page.currentPage" - :page-sizes="[30, 50, 80, 120]" + :page-sizes="[1, 2, 80, 120]" :page-size="page.pageSize" layout="total, sizes, prev, pager, next, jumper" :total="page.total" @@ -147,7 +147,11 @@ :columnListName="columnListName" > - + + + diff --git a/src/views/distribution/inventory/delivery/distributionStockArticle.vue b/src/views/distribution/inventory/delivery/distributionStockArticle.vue index dde9b721..0602bc89 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticle.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticle.vue @@ -140,7 +140,13 @@ - +