From 7c3babd85a153e9ad2e2627e584563d48855bb6a Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Fri, 28 Feb 2025 14:40:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=B8=89=E6=96=B9=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E7=BB=B4=E6=8A=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/basicdata/TripartiteMaterial.js | 45 +- src/api/basicdata/defaultShipper.js | 28 + src/option/basicdata/TripartiteMaterial.js | 68 +- src/option/basicdata/defaultShipper.js | 49 ++ src/router/views/index.js | 12 + .../basicdata/TripartiteMaterial/detail.vue | 699 ++++++++++++++++++ .../basicdata/TripartiteMaterial/list.vue | 10 +- .../basicdata/warehouse/defaultShipper.vue | 616 +++++++++++++++ .../distribution/inventory/CreateOrder.vue | 53 ++ 9 files changed, 1569 insertions(+), 11 deletions(-) create mode 100644 src/api/basicdata/defaultShipper.js create mode 100644 src/option/basicdata/defaultShipper.js create mode 100644 src/views/basicdata/TripartiteMaterial/detail.vue create mode 100644 src/views/basicdata/warehouse/defaultShipper.vue diff --git a/src/api/basicdata/TripartiteMaterial.js b/src/api/basicdata/TripartiteMaterial.js index bb612513..1613b33c 100644 --- a/src/api/basicdata/TripartiteMaterial.js +++ b/src/api/basicdata/TripartiteMaterial.js @@ -50,7 +50,6 @@ export const postRemove = (data = {}) => { }); }; - /** * 获取上传模板 */ @@ -60,4 +59,46 @@ export const getDownTemplate = () => { method: 'get', responseType: 'blob', }); -}; \ No newline at end of file +}; + +/** + * 获取详情列表 + */ +export const postBasicdataMainCategoryPageList = data => { + return request({ + url: '/api/logpm-basicdata/basicdataMainCategory/pageList', + method: 'post', + data, + }); +}; + +/** + * 编辑 + */ +export const postEditMainCategory = data => { + return request({ + url: '/api/logpm-basicdata/basicdataMainCategory/editMainCategory', + method: 'post', + data, + }); +}; +/** + * 移除 + */ +export const postRemoveMainCategory = data => { + return request({ + url: '/api/logpm-basicdata/basicdataMainCategory/removeMainCategory', + method: 'post', + data, + }); +}; +/** + * 获取主体 + */ +export const postMainList = data => { + return request({ + url: '/api/logpm-basicdata/basicdataMain/mainList', + method: 'post', + data, + }); +}; diff --git a/src/api/basicdata/defaultShipper.js b/src/api/basicdata/defaultShipper.js new file mode 100644 index 00000000..04bee88a --- /dev/null +++ b/src/api/basicdata/defaultShipper.js @@ -0,0 +1,28 @@ +import request from '@/axios'; + +/** 获取页面数据 */ +export const postPageList = (data = {}) => { + return request({ + url: '/api/logpm-basicdata/forwardingUnit/pageList', + method: 'post', + data, + }); +}; + +/** 新增编辑默认发货单位 */ +export const postEditUnit = (data = {}) => { + return request({ + url: '/api/logpm-basicdata/forwardingUnit/editUnit', + method: 'post', + data, + }); +}; + +/** 删除默认发货单位 */ +export const postRemoveUnit = (data = {}) => { + return request({ + url: '/api/logpm-basicdata/forwardingUnit/removeUnit', + method: 'post', + data, + }); +}; diff --git a/src/option/basicdata/TripartiteMaterial.js b/src/option/basicdata/TripartiteMaterial.js index 17c90058..c995c33c 100644 --- a/src/option/basicdata/TripartiteMaterial.js +++ b/src/option/basicdata/TripartiteMaterial.js @@ -44,14 +44,14 @@ export const columnList = [ width: '150', checkarr: [ { - label: '收入', - value:'1' - }, - { - label: '成本', - value:'2' - }, - ], + label: '收入', + value: '1', + }, + { + label: '成本', + value: '2', + }, + ], fixed: false, sortable: true, head: false, @@ -111,3 +111,55 @@ export const columnList = [ sortable: false, }, ]; + +export const columnListDetail = [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'category', + label: '品类名称', + type: 2, + values: '', + width: '300', + checkarr: [], + fixed: false, + sortable: true, + head: false, + isTitleSearch: true, + }, + { + prop: 'mainName', + label: '主体名称', + type: 2, + values: '', + width: '300', + checkarr: [], + fixed: false, + sortable: true, + head: false, + isTitleSearch: true, + }, + { + prop: 'createUserName', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: false, + }, +]; diff --git a/src/option/basicdata/defaultShipper.js b/src/option/basicdata/defaultShipper.js new file mode 100644 index 00000000..436d4751 --- /dev/null +++ b/src/option/basicdata/defaultShipper.js @@ -0,0 +1,49 @@ +export const columnList = [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + label: '仓库名称', + prop: 'warehouseName', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + isTitleSearch: false, + }, + { + label: '客户名称', + prop: 'clientName', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + isTitleSearch: false, + }, + { + label: '操作', + prop: '', + type: 6, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, +]; diff --git a/src/router/views/index.js b/src/router/views/index.js index 87571050..2e082b4b 100644 --- a/src/router/views/index.js +++ b/src/router/views/index.js @@ -1109,6 +1109,18 @@ export default [ }), component: () => import('@/views/basicdata/TripartiteMaterial/list.vue'), }, + { + path: '/basicdata/TripartiteMaterial/detail', + name: '三方物料主体品类详情', + meta: { + i18n: 'dict', + }, + props: route => ({ + name: route.query.name, + id: route.query.id, + }), + component: () => import('@/views/basicdata/TripartiteMaterial/detail.vue'), + }, { path: '/basicdata/ConfigureBillingAndWarehousing/list', name: '配置开单及入库', diff --git a/src/views/basicdata/TripartiteMaterial/detail.vue b/src/views/basicdata/TripartiteMaterial/detail.vue new file mode 100644 index 00000000..16bf745f --- /dev/null +++ b/src/views/basicdata/TripartiteMaterial/detail.vue @@ -0,0 +1,699 @@ + + + + + diff --git a/src/views/basicdata/TripartiteMaterial/list.vue b/src/views/basicdata/TripartiteMaterial/list.vue index 4089153b..26bd0e16 100644 --- a/src/views/basicdata/TripartiteMaterial/list.vue +++ b/src/views/basicdata/TripartiteMaterial/list.vue @@ -58,7 +58,7 @@ > @@ -589,6 +589,14 @@ const handleSubmit = () => { }); }; +/** 跳转详情 */ +const handleJumpDetail = ({ row }) => { + $router.push({ + path: '/basicdata/TripartiteMaterial/detail', + query: { name: '主体品类详情', factoryCategoryId: row.id }, + }); +}; + /** 删除 */ const handleRemove = ({ row }) => { ElMessageBox.confirm('确认删除吗?', '', { diff --git a/src/views/basicdata/warehouse/defaultShipper.vue b/src/views/basicdata/warehouse/defaultShipper.vue new file mode 100644 index 00000000..7e3570f9 --- /dev/null +++ b/src/views/basicdata/warehouse/defaultShipper.vue @@ -0,0 +1,616 @@ + + + + + diff --git a/src/views/distribution/inventory/CreateOrder.vue b/src/views/distribution/inventory/CreateOrder.vue index 7c5c5ecb..8e9b9845 100644 --- a/src/views/distribution/inventory/CreateOrder.vue +++ b/src/views/distribution/inventory/CreateOrder.vue @@ -2017,6 +2017,8 @@ const details = reactive({ /** 批量设置品类 -- 名称 */ incomeCategoryName: '', }, + /** 被选中的暂存单id数组 */ + ids: [], }); details.deepQuery = deepClone(details.query); @@ -2739,6 +2741,8 @@ const handleChoose = () => { } const ids = details.selectionList.map(val => val.id); + + details.ids = ids; // 请求页面数据 initPageInfo(ids); details.submitType = details.orderStatus; @@ -2933,6 +2937,54 @@ const handleComputed = (row: any, onlyComputedTrunline = false, chargeType = nul handlePrice(!onlyComputedTrunline, 'trunkline'); }; +/** 重新获取包件数据 */ +const initPackageList = async () => { + if (details.submitType === 'notHaveData') return; + + const res = await (details.pageInfo.type === 'edit' + ? // 编辑 + postFindAdvanceDetailListByWaybillId({ + waybillId: details.pageInfo.id, + clientId: details.query.consigneeId, + }) + : // 新增 + postFindAdvanceDetailListByAdvanceIds({ + advanceIds: details.ids.length > 0 ? details.ids : JSON.parse(details.pageInfo.ids), + clientId: details.query.consigneeId, + })); + + const { code, data } = res.data; + if (code !== 200) return; + details.package.data = data || []; + + let _flag = false; + + for (let i = 0; i < details.package.data.length; i++) { + const element = details.package.data[i]; + + initPackage(element); + + // 收入结算 + element.cloneIncomeCategoryId = element.incomeCategoryId || ''; // 编辑提交时, 跟据confirmIncomeCategoryId判断是否修改 + + // 成本结算 + element.cloneCostCategoryId = element.costCategoryId || ''; // 编辑提交时, 跟据confirmCostCategoryId判断是否修改 + + !element.incomeCategoryId && (_flag = true); + } + + details.package.renderData = handleFilterData(details.package.data, [], details.package.query); + + if (!_flag) return; + ElMessage.warning('存在数据未维护结算品类,请维护品类信息'); + + handleSubmitPackage(); + + // await nextTick(); + // handleShow(); + console.log('res :>> ', res); +}; + /** 查询客户信息 */ const handleFindClientInfo = async (type, isClearId = 0) => { try { @@ -3019,6 +3071,7 @@ const handleChooseConsigner = (column, prop, order) => { handleFindClientInfo('consigneeName'); handleFindClientInfo('consigneeMobile'); handleCloseSelcet(); + initPackageList(); }; /** 切换tabBar */