From 1a3012d5a6598841fac1581d59a52f4da6609a63 Mon Sep 17 00:00:00 2001 From: liushuai Date: Thu, 12 Mar 2020 22:20:08 +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/Outsourcing/OutsourcingPartsQuery.js | 4 +- .../OutsourcingPaymentPlanManagement.js | 5 +- src/views/Inventory/StockInquiry/index.vue | 12 +- .../ContractApprovalQuery/index.vue | 40 ++- .../MachiningParts/index.vue | 14 +- .../ScheduleCompletionDetails/index.vue | 32 +-- .../TraceabilityOfParts/index.vue | 240 ++++++------------ .../MarketingCenter/PerformanceBond/index.vue | 232 +++++++++++------ .../MarketingCenter/SafetyMargin/index.vue | 8 +- .../OutsourcingPartsQuery/index.vue | 103 +++----- .../index.vue | 84 +++--- .../OutsourcingTaskExecution/index.vue | 12 +- .../OutsourcingTaskQuery/index.vue | 1 - .../CreatingPurchasingMaterials/index.vue | 2 +- .../InvoiceSettlementApplication1/index.vue | 11 +- .../NewArrivalList/index.vue | 12 +- .../OfflineProcurement/index.vue | 14 +- 17 files changed, 406 insertions(+), 420 deletions(-) diff --git a/src/api/Outsourcing/OutsourcingPartsQuery.js b/src/api/Outsourcing/OutsourcingPartsQuery.js index ea006208..e74bf51c 100644 --- a/src/api/Outsourcing/OutsourcingPartsQuery.js +++ b/src/api/Outsourcing/OutsourcingPartsQuery.js @@ -25,7 +25,7 @@ export function searchTable(check, supplierNameValue, check1, MaterialsValue, ch UserID: state.state.user.id, ModularID: router.currentRoute.path, type: '1', - name: '车间生产管理_外协零件_查询数据', + name: '车间生产管理_外协零件_查询数据_新', param: '外协厂家_check=' + check + '&外协厂家=' + supplierNameValue + '&外协状态_check=' + check1 + '&外协状态=' + MaterialsValue + '&时间_check=' + check2 + '&开始时间=' + time1 + '&结束时间=' + time2, Pagination: pageCurrent + '&' + pageSize } @@ -40,7 +40,7 @@ export function getExport(check, supplierNameValue, check1, MaterialsValue, chec UserID: state.state.user.id, ModularID: router.currentRoute.path, type: '1', - name: '车间生产管理_外协零件_查询数据', + name: '车间生产管理_外协零件_查询数据_新', param: '外协厂家_check=' + check + '&外协厂家=' + supplierNameValue + '&外协状态_check=' + check1 + '&外协状态=' + MaterialsValue + '&时间_check=' + check2 + '&开始时间=' + time1 + '&结束时间=' + time2 } }) diff --git a/src/api/Outsourcing/OutsourcingPaymentPlanManagement.js b/src/api/Outsourcing/OutsourcingPaymentPlanManagement.js index 6cb24d57..82d47401 100644 --- a/src/api/Outsourcing/OutsourcingPaymentPlanManagement.js +++ b/src/api/Outsourcing/OutsourcingPaymentPlanManagement.js @@ -3,7 +3,7 @@ import state from '@/store' import router from '@/router' // 查询表格数据 -export function searchtable(check1, ManufacturerAbbreviation, check2, starttime, endTime, pageCurrent, pageSize) { +export function searchtable(check1, ManufacturerAbbreviation, check2, starttime, endTime) { return request({ url: '', method: 'post', @@ -12,8 +12,7 @@ export function searchtable(check1, ManufacturerAbbreviation, check2, starttime, ModularID: router.currentRoute.path, type: '1', name: '车间生产管理工艺_外协付款_查询', - param: '外协厂家_check=' + check1 + '&外协厂家=' + ManufacturerAbbreviation + '&时间_check=' + check2 + '&开始时间=' + starttime + '&结束时间=' + endTime, - Pagination: pageCurrent + '&' + pageSize + param: '外协厂家_check=' + check1 + '&外协厂家=' + ManufacturerAbbreviation + '&时间_check=' + check2 + '&开始时间=' + starttime + '&结束时间=' + endTime } }) } diff --git a/src/views/Inventory/StockInquiry/index.vue b/src/views/Inventory/StockInquiry/index.vue index bf471a5b..4eefc0e7 100644 --- a/src/views/Inventory/StockInquiry/index.vue +++ b/src/views/Inventory/StockInquiry/index.vue @@ -24,22 +24,22 @@ - + - + - + - + @@ -49,12 +49,12 @@ {{ scope.row.组号 }} - + - + diff --git a/src/views/ManufacturingCenter/ContractApprovalQuery/index.vue b/src/views/ManufacturingCenter/ContractApprovalQuery/index.vue index 94013c5d..96389547 100644 --- a/src/views/ManufacturingCenter/ContractApprovalQuery/index.vue +++ b/src/views/ManufacturingCenter/ContractApprovalQuery/index.vue @@ -25,6 +25,7 @@ 通过 未过 查询 + 导出 @@ -48,34 +49,29 @@ {{ scope.row.合同总额 }} - + - - - @@ -147,6 +143,28 @@ export default { this.total1 = response.data.total }) }, + exportTable() { + var check1, check2, check3 + this.billNames ? check1 = 1 : check1 = 0 + this.dateRange ? check2 = 1 : (check2 = 0, this.dateRange = '') + this.personValue ? check3 = 1 : check3 = 0 + var param = [] + param[0] = ['查询全部', this.radio] + param[1] = ['供应商名称_check', check1] + param[2] = ['供应商名称', this.billNames] + param[3] = ['时间段_check', check2] + if (check2 === 0) { + param[4] = ['开始时间', ''] + param[5] = ['结束时间', ''] + } else { + param[4] = ['开始时间', this.dateRange[0]] + param[5] = ['结束时间', this.dateRange[1]] + } + param[6] = ['人员编号_check', check3] + param[7] = ['人员编号', this.personValue] + var Data = this.CreateData('2001', '报表_采购管理_合同审核查询_查询数据', param) + this.exportExcel_NPOI(Data) + }, searchTable2(row) { this.contractValue = parseInt(row.采购合同流水号) searchTable2(this.contractValue).then(response => { diff --git a/src/views/ManufacturingCenter/MachiningParts/index.vue b/src/views/ManufacturingCenter/MachiningParts/index.vue index 557f8e08..10858418 100644 --- a/src/views/ManufacturingCenter/MachiningParts/index.vue +++ b/src/views/ManufacturingCenter/MachiningParts/index.vue @@ -131,7 +131,7 @@ - + 零件图号: @@ -140,13 +140,13 @@ - + @@ -156,7 +156,7 @@ {{ scope.row.工艺名称 }} - + @@ -168,16 +168,16 @@ diff --git a/src/views/ManufacturingCenter/ScheduleCompletionDetails/index.vue b/src/views/ManufacturingCenter/ScheduleCompletionDetails/index.vue index d1691612..c311f3ea 100644 --- a/src/views/ManufacturingCenter/ScheduleCompletionDetails/index.vue +++ b/src/views/ManufacturingCenter/ScheduleCompletionDetails/index.vue @@ -32,7 +32,12 @@ - + + + + @@ -42,12 +47,7 @@ - - - - + @@ -76,12 +76,12 @@ {{ scope.row.零件名称 }} - + - + @@ -91,7 +91,7 @@ - + @@ -101,16 +101,16 @@ - - - - + + + +
生命周期
- +
- +
-
-
- —请查询— -
-
-
-
-
- 第{{ sudoku.id }}序 -
-
- -
- {{ sudoku.procedure }} -
-
- -
- {{ sudoku.planningTime }} -
-
- -
- {{ sudoku.actualTime }} -
-
- -
- {{ sudoku.name }} -
-
-
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
- - -
- - —备料信息— - - - 备料单:{{ isMaterials }} - 备料类型:{{ materialsType }} - 下料员:{{ Cutter }} - 确认日期:{{ confirmationTime }} - - - - - - - -
-
- -
- - —外协信息— - - - 是否序间外协:{{ isOut }} - 外协工序:{{ outName }} - 检验日期:{{ outTime }} - - - - - - - - - -
-
-
跳转链接 @@ -187,7 +154,9 @@