diff --git a/src/api/inventory/invPlace.js b/src/api/inventory/invPlace.js index f0dac60f..35cc1684 100644 --- a/src/api/inventory/invPlace.js +++ b/src/api/inventory/invPlace.js @@ -16,6 +16,14 @@ export function bindInvSpace(data) { }); } +export function unbindInvOrderSpace(data) { + return axios({ + url: "/spms/inv/product/unbindInvOrderSpace", + method: "post", + data: data + }); +} + export function bindInvOrderSpace(data) { return axios({ url: "/spms/inv/product/bindInvOrderSpace", @@ -40,6 +48,14 @@ export function getInvProductInfo(params) { }); } +export function getInvProductOutInfo(params) { + return axios({ + url: "/spms/inv/product/getInvProductOutInfo", + method: "get", + params: params + }); +} + export function getCheckInvProductInfo(params) { return axios({ url: "/spms/inv/product/getCheckInvProductInfo", diff --git a/src/views/inventory/InvCheckPlace.vue b/src/views/inventory/InvCheckPlace.vue new file mode 100644 index 00000000..ccd41f48 --- /dev/null +++ b/src/views/inventory/InvCheckPlace.vue @@ -0,0 +1,318 @@ + + + + + + diff --git a/src/views/inventory/InvOutPlace.vue b/src/views/inventory/InvOutPlace.vue new file mode 100644 index 00000000..8ce507e7 --- /dev/null +++ b/src/views/inventory/InvOutPlace.vue @@ -0,0 +1,296 @@ + + + + + + diff --git a/src/views/inventory/InvPlace.vue b/src/views/inventory/InvPlace.vue index 1343b083..d8dabfec 100644 --- a/src/views/inventory/InvPlace.vue +++ b/src/views/inventory/InvPlace.vue @@ -104,7 +104,7 @@ 查询 按物资上架 按单上架 - 货位变更 + @@ -174,20 +174,6 @@ > - - - - - @@ -224,7 +210,6 @@ export default { loading: false, productPlaceDialogVisible: false, orderPlaceDialogVisible: false, - placeChangeDialogVisible: false, typeNames: { 1: "按物资上架", 2: "按单上架" @@ -308,8 +293,6 @@ export default { this.productPlaceDialogVisible = true; } else if (type === 2) { this.orderPlaceDialogVisible = true; - } else if (type === 3) { - this.placeChangeDialogVisible = true; } }, closePlaceDialog(type) { @@ -317,8 +300,6 @@ export default { this.productPlaceDialogVisible = false; } else if (type === 2) { this.orderPlaceDialogVisible = false; - } else if (type === 3) { - this.placeChangeDialogVisible = false; } this.getList(); }, diff --git a/src/views/inventory/InvProductPlaceOutModify.vue b/src/views/inventory/InvProductPlaceOutModify.vue new file mode 100644 index 00000000..5d69982c --- /dev/null +++ b/src/views/inventory/InvProductPlaceOutModify.vue @@ -0,0 +1,313 @@ + + + + +