From caf1282ec2e595fdc52d4aa0f89d1ec0da441031 Mon Sep 17 00:00:00 2001 From: MrZhai Date: Thu, 17 Mar 2022 18:09:16 +0800 Subject: [PATCH] =?UTF-8?q?1.=E7=AC=AC=E4=B8=89=E6=96=B9=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BB=93=E5=BA=93=E4=BF=A1=E6=81=AF=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=E5=8F=8A=E9=A1=B5=E9=9D=A2=EF=BC=8C=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E7=AC=AC=E4=B8=89=E6=96=B9=E4=BB=93=E5=BA=93=202.=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E6=95=B0=E6=8D=AE=E4=BB=93=E5=BA=93=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=85=B3=E8=81=94=E7=AC=AC=E4=B8=89=E6=96=B9=E4=BB=93=E5=BA=93?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/basic/invWarehouse.js | 27 ++ src/api/thrsys/thrInvWarehouse.js | 43 +++ src/router/index.js | 10 + src/views/basic/invWarehouse.vue | 161 +++++++- src/views/thrsys/ThrInvWarehouse.vue | 545 +++++++++++++++++++++++++++ 5 files changed, 779 insertions(+), 7 deletions(-) create mode 100644 src/api/thrsys/thrInvWarehouse.js create mode 100644 src/views/thrsys/ThrInvWarehouse.vue diff --git a/src/api/basic/invWarehouse.js b/src/api/basic/invWarehouse.js index 79766ec..dc2d853 100644 --- a/src/api/basic/invWarehouse.js +++ b/src/api/basic/invWarehouse.js @@ -41,3 +41,30 @@ export function deleteWarehouse(data) { data: data }); } + +//绑定第三方仓库 +export function bindThrWarehouse(params) { + return axios({ + url: "/spms/inv/warehouse/bindThrWarehouse", + method: "post", + params: params + }); +} + +//解绑第三方仓库 +export function unbindThrWarehouse(params) { + return axios({ + url: "/spms/inv/warehouse/unbindThrWarehouse", + method: "post", + params: params + }); +} + +//查询第三方系统和仓库数据关联信息 +export function getThrsysDetail(params) { + return axios({ + url: "/spms/inv/warehouse/thridSys/detail", + method: "get", + params: params + }); +} diff --git a/src/api/thrsys/thrInvWarehouse.js b/src/api/thrsys/thrInvWarehouse.js new file mode 100644 index 0000000..e007b2a --- /dev/null +++ b/src/api/thrsys/thrInvWarehouse.js @@ -0,0 +1,43 @@ +import axios from "../../utils/axios"; + +// 权限管理 + +// 获取列表 +export function filterThrList(query) { + return axios({ + url: "/spms/thrsys/warehouse/filter", + method: "get", + params: query + }); +} + +export function filterThrAll(query) { + return axios({ + url: "/spms/thrsys/warehouse/filterAll", + method: "get", + params: query + }); +} + + +// 保存 +export function saveThrWarehouse(data, formName, method = "post") { + let url = + formName !== "edit" + ? "/spms/thrsys/warehouse/save" + : "/spms/thrsys/warehouse/edit"; + return axios({ + url: url, + method: method, + data: data + }); +} + +// 删除 +export function deleteThrWarehouse(data) { + return axios({ + url: "/spms/thrsys/warehouse/delete", + method: "post", + data: data + }); +} diff --git a/src/router/index.js b/src/router/index.js index 5bf82d3..894b4fa 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -93,6 +93,7 @@ import udiinfoExportSmp from "../views/basic/UdiinfoExportSmp.vue"; import UdiInfoDonwloadSmp from "../views/basic/UdiInfoDonwloadSmp.vue"; import thrOrderExportSmp from "../views/thrsys/ThrOrderExportSmp.vue"; import thrProductsExportSmp from "../views/thrsys/ThrProductsExportSmp.vue"; +import thrInvWarehouse from "@/views/thrsys/ThrInvWarehouse"; // Vue.use(VueRouter); const err401 = r => @@ -641,6 +642,15 @@ export const asyncRouterMap = [ authRule: ["thrsys"] }, children: [ + { + path: "thrInvWarehouse", + component: thrInvWarehouse, + name: "仓库信息", + icon: "", + meta: { + authRule: ["thrsys/thrInvWarehouse"] + } + }, { path: "/products", redirect: "/products/thrProducts", diff --git a/src/views/basic/invWarehouse.vue b/src/views/basic/invWarehouse.vue index 5e9dfa4..08c0a87 100644 --- a/src/views/basic/invWarehouse.vue +++ b/src/views/basic/invWarehouse.vue @@ -196,6 +196,41 @@ width="60%" top="5vh" > + + + + + + + + + + + @@ -241,6 +276,7 @@ + + + + + + + + + + + + + + + + + + + @@ -259,8 +342,12 @@ import { filterList, saveWarehouse, - deleteWarehouse + deleteWarehouse, + bindThrWarehouse, + unbindThrWarehouse, + getThrsysDetail } from "../../api/basic/invWarehouse"; +import {filterThrList} from "@/api/thrsys/thrInvWarehouse"; const formJson = { id: null, @@ -314,11 +401,15 @@ export default { {required: true, message: "请输入仓库货位代码", trigger: "blur"} ] }, - pidData: {} - , - deleteLoading: false - } - ; + pidData: {}, + deleteLoading: false, + thrWarehouseData : null, + currentId: null, + thrWareHouseVisible: false, + sysList: [], + checkThrWarehouseRow: null, + currentSysId: null + }; }, methods: { /*eslint-disable */ @@ -382,6 +473,12 @@ export default { this.mergeList = []; this.treeList = []; }); + + //加载第三方仓库数据 + filterThrList().then((res) => { + this.thrWarehouseData = res.data.list; + }).catch((error) => { + }) }, // 刷新表单 resetForm() { @@ -403,6 +500,7 @@ export default { // 显示表单 handleForm(node, data, formName) { this.formVisible = true; + this.currentId = data.id; let no = this.getProjectNum() + Math.floor(Math.random() * 10000) this.pidData = data || null; formJson.pid = (data && parseInt(data.id)) || ""; @@ -419,8 +517,22 @@ export default { if (data && data.id) { this.index = this.mergeList.findIndex((d) => d.id === data.id); } + this.getThrsysDetail(); + }, + getThrsysDetail() { + let params = { + id: this.currentId + }; + getThrsysDetail(params) + .then((response) => { + this.loading = false; + this.sysList = response.data.list || []; + }) + .catch(() => { + this.loading = false; + this.sysList = []; + }); }, - handleSubForm(node, data, formName) { this.subFormVisible = true; @@ -538,6 +650,41 @@ export default { CurrentDate += '0' + Day } return CurrentDate + }, + //绑定第三方仓库 + bindThrWarehouse() { + this.thrWareHouseVisible = false; + let params = { + id: this.currentId, + thridWarehouseId: this.checkThrWarehouseRow.code, + sysId: this.currentSysId + } + bindThrWarehouse(params).then((res) => { + this.$message.success("绑定成功") + this.getThrsysDetail(); + }).catch((error) => { + this.$message.error("绑定失败") + }) + }, + //解绑第三方仓库 + unbindThrWarehouse(row) { + let params = { + id: this.currentId, + sysId: row.sysId + }; + unbindThrWarehouse(params).then((res) => { + this.$message.success("解绑成功"); + this.getThrsysDetail(); + }).catch((error) => { + this.$message.error("解绑失败"); + }) + }, + intentSelect(row) { + this.thrWareHouseVisible = true; + this.currentSysId = row.sysId; + }, + changeThrWarehouse(row){ + this.checkThrWarehouseRow = row; } }, filters: { diff --git a/src/views/thrsys/ThrInvWarehouse.vue b/src/views/thrsys/ThrInvWarehouse.vue new file mode 100644 index 0000000..39c2402 --- /dev/null +++ b/src/views/thrsys/ThrInvWarehouse.vue @@ -0,0 +1,545 @@ + + + + +