diff --git a/src/views/inout/IoDeliveryAuditOrder.vue b/src/views/inout/IoDeliveryAuditOrder.vue index 20394cb..b602832 100644 --- a/src/views/inout/IoDeliveryAuditOrder.vue +++ b/src/views/inout/IoDeliveryAuditOrder.vue @@ -772,7 +772,7 @@ export default { printOrder(row) { let tQuery = { action: row.action, - moduleId: 2, + status: row.status, } this.loading = true; inspectionOrderPDFFromTemplateFile(tQuery).then((response) => { @@ -781,7 +781,7 @@ export default { templateId: response.data, orderIdFk: row.billNo, action: row.action, - moduleId: 2, + status: row.status, } orderPDFFromTemplateFile(tQuery).then((response) => { //将pdf文件转换为url。 diff --git a/src/views/inout/IoDeliverySearchOrder.vue b/src/views/inout/IoDeliverySearchOrder.vue index c0c29e7..84e82d2 100644 --- a/src/views/inout/IoDeliverySearchOrder.vue +++ b/src/views/inout/IoDeliverySearchOrder.vue @@ -736,7 +736,7 @@ export default { printOrder(row) { let tQuery = { action: row.action, - moduleId: 2, + status: row.status, } this.loading = true; inspectionOrderPDFFromTemplateFile(tQuery).then((response) => { @@ -745,7 +745,7 @@ export default { templateId: response.data, orderIdFk: row.billNo, action: row.action, - moduleId: 2, + status: row.status, } orderPDFFromTemplateFile(tQuery).then((response) => { //将pdf文件转换为url。 diff --git a/src/views/supplier/products/supDiProductsCheck.vue b/src/views/supplier/products/supDiProductsCheck.vue index abdc832..ce63477 100644 --- a/src/views/supplier/products/supDiProductsCheck.vue +++ b/src/views/supplier/products/supDiProductsCheck.vue @@ -64,7 +64,6 @@ 显示/隐藏搜索栏 重置 查询 - 全部审核 diff --git a/src/views/system/print/pdfCodePrintSet.vue b/src/views/system/print/pdfCodePrintSet.vue index 02255e1..908fc0d 100644 --- a/src/views/system/print/pdfCodePrintSet.vue +++ b/src/views/system/print/pdfCodePrintSet.vue @@ -413,7 +413,7 @@ export default { }, jumpDl(row) { - this.handleDownload(this.BASE_URL + "/udiwms/donwload/file?fileName=" + row.templateDlUrl, row.name + ".jrxml"); + this.handleDownload(this.BASE_URL + "/udiwms/donwload/printFile?fileName=" + row.templateDlUrl, row.name + ".jrxml"); }, getModuleList() { this.moduleLoading = true; diff --git a/src/views/system/print/pdfLabelPrintSet.vue b/src/views/system/print/pdfLabelPrintSet.vue index 7665bc2..882fef9 100644 --- a/src/views/system/print/pdfLabelPrintSet.vue +++ b/src/views/system/print/pdfLabelPrintSet.vue @@ -413,7 +413,7 @@ export default { }, jumpDl(row) { - this.handleDownload(this.BASE_URL + "/udiwms/donwload/file?fileName=" + row.templateDlUrl, row.name + ".jrxml"); + this.handleDownload(this.BASE_URL + "/udiwms/donwload/printFile?fileName=" + row.templateDlUrl, row.name + ".jrxml"); }, getModuleList() { this.moduleLoading = true; diff --git a/src/views/system/print/pdfStatementPrintSet.vue b/src/views/system/print/pdfStatementPrintSet.vue index 17d10f6..8a6715c 100644 --- a/src/views/system/print/pdfStatementPrintSet.vue +++ b/src/views/system/print/pdfStatementPrintSet.vue @@ -413,7 +413,7 @@ export default { }, jumpDl(row) { - this.handleDownload(this.BASE_URL + "/udiwms/donwload/file?fileName=" + row.templateDlUrl, row.name + ".jrxml"); + this.handleDownload(this.BASE_URL + "/udiwms/donwload/printFile?fileName=" + row.templateDlUrl, row.name + ".jrxml"); }, getModuleList() { this.moduleLoading = true;