From ca028685002724540ef2b07de65b3de83e9013df Mon Sep 17 00:00:00 2001 From: liushuai Date: Thu, 31 Oct 2019 08:11:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/Inventory/Inboundscanning.js | 5 +- src/api/Inventory/StockInquiry.js | 12 ++ .../Assembly/DeliveryConfirmation/index.vue | 6 +- src/views/Assembly/MakeAssemblyPlan/index.vue | 154 ++++++++++------- src/views/Assembly/MakeColdWorkPlan/index.vue | 158 +++++++++++------- .../Assembly/MakeElectricalAssembly/index.vue | 158 +++++++++++------- src/views/Assembly/MakePaintPlan/index.vue | 154 ++++++++++------- src/views/Inventory/Inboundscanning/index.vue | 75 ++++----- src/views/Inventory/OutPartSelect/index.vue | 25 ++- src/views/Inventory/StockInquiry/index.vue | 119 ++++++++++--- .../ManufacturingCenter/ParseQuery/index.vue | 10 +- .../ProjectPlanningManagement/index.vue | 34 ++-- .../OfflineContractRequestFund/index.vue | 11 +- .../PurchaseContractRequestFund/index.vue | 73 +------- .../ImportParts/specificationData.vue | 4 +- 15 files changed, 563 insertions(+), 435 deletions(-) diff --git a/src/api/Inventory/Inboundscanning.js b/src/api/Inventory/Inboundscanning.js index 92e8ae6c..37d46d37 100644 --- a/src/api/Inventory/Inboundscanning.js +++ b/src/api/Inventory/Inboundscanning.js @@ -45,14 +45,13 @@ export function getinventory() { }) } // 货位查询 -export function getlocate(housenumber) { +export function getlocate() { return request({ url: '', method: 'post', data: { type: '1', - name: '库存管理_货位主文件_查询数据', - param: '仓库流水号=' + housenumber + '=int' + name: '库存管理_货位主文件_查询数据_查询全部' } }) } diff --git a/src/api/Inventory/StockInquiry.js b/src/api/Inventory/StockInquiry.js index 70438de1..c2843cb8 100644 --- a/src/api/Inventory/StockInquiry.js +++ b/src/api/Inventory/StockInquiry.js @@ -37,3 +37,15 @@ export function getTable(num1, num2, num3, num4, num5, num6, pageCurrent, pageSi } }) } +export function getTable1(num1, num2, num3, num4, num5, num6, pageCurrent, pageSize) { + return request({ + url: '', + method: 'post', + data: { + type: '1', + name: '车间生产管理工艺_库存管理_基本件出库记录查询', + param: '机床流水号_check=' + num1 + '&机床流水号=' + num2 + '&组件流水号_check=' + num3 + '&组件流水号=' + num4 + '&零件图号_check=' + num5 + '&零件图号=' + num6, + Pagination: pageCurrent + '&' + pageSize + } + }) +} diff --git a/src/views/Assembly/DeliveryConfirmation/index.vue b/src/views/Assembly/DeliveryConfirmation/index.vue index 9a9aacf0..760ba1bd 100644 --- a/src/views/Assembly/DeliveryConfirmation/index.vue +++ b/src/views/Assembly/DeliveryConfirmation/index.vue @@ -215,17 +215,17 @@ diff --git a/src/views/Assembly/MakeAssemblyPlan/index.vue b/src/views/Assembly/MakeAssemblyPlan/index.vue index b64f6ed0..bafe54b1 100644 --- a/src/views/Assembly/MakeAssemblyPlan/index.vue +++ b/src/views/Assembly/MakeAssemblyPlan/index.vue @@ -1,7 +1,7 @@