From 02bb4ca48fc1117f831530a6dd81ce938b23d789 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Sat, 6 May 2023 11:01:57 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E7=A5=A8=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/InvoiceCkeck.vue | 631 ++++++++++++++++++ src/views/inout/InvoiceRegistration.vue | 158 +++-- .../inout/InvoiceRegistrationDetermine.vue | 31 +- 3 files changed, 753 insertions(+), 67 deletions(-) create mode 100644 src/views/inout/InvoiceCkeck.vue diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue new file mode 100644 index 0000000..df5f949 --- /dev/null +++ b/src/views/inout/InvoiceCkeck.vue @@ -0,0 +1,631 @@ + + + + 登记 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ choiceFile }} + + 只能上传 jpg,png,pdf,doc 文件,且不超过 10 MB + + + + + + + + + 文件预览 + + + + + + + + + + + + + + 单据 {{ input.billNo }}-单据详情 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/inout/InvoiceRegistration.vue b/src/views/inout/InvoiceRegistration.vue index bd4df61..b185d3e 100644 --- a/src/views/inout/InvoiceRegistration.vue +++ b/src/views/inout/InvoiceRegistration.vue @@ -140,6 +140,19 @@ border @row-click="handleSelectionChange"> + + + + 未登记 + + + 未全部登记 + + + 全部登记 + + + @@ -179,22 +192,16 @@ - - - - 未登记 - - - 未全部登记 - - - 全部登记 - - - 确认 + 发票登记 + @@ -216,6 +223,22 @@ row-key="id" highlight-current-row > + + + + 未登记 + + + 全部登记 + + + + - - - - 未登记 - - - 全部登记 - - - + + - - - - 发票登记 - - - + + + + + + + + + + + + + + + + + { - insertInvoice(row) - .then(response => { - if (response.code === 20000) { - this.closeInvoice(row); - } else { - this.$message.error(response.message); - } - }) - .catch((response) => { - this.$message.error(response.message); - }); - }).catch(() => { - }); - // 加状态 - updateorderBiz(row).then(res =>{ - - }) + InvoiceRegister1(row){ + this.inputInv=row; + this.checkInvoice=true; + }, + closecheckInvoice(){ + this.checkInvoice=false; + this.getCodeDetailList(); }, onSubmit() { @@ -793,6 +821,7 @@ export default { type: "success", message: "删除成功!", }); + this.getCodeDetailList(); } }) .catch(() => { @@ -806,6 +835,7 @@ export default { handleSelectionChange(val) { this.currentRow.billNo = val.billNo; this.getOrderDetails(); + this.getBizDetailListInv(); }, // 获取单据 业务详情、扫码详情、扫码明细 getOrderDetails() { @@ -945,10 +975,10 @@ export default { this.$message.error("请先选择需要查询的单据!") return; } - this.codeQuery.orderIdFk = this.currentRow.billNo; this.codeDetailLoading = true; - getBizDetailListInv(this.codeQuery).then((res) => { + + filterBizOrderList(this.codeQuery).then((res) => { this.codeDetailLoading = false; if (res.code === 20000) { this.codeDetailList = res.data.list || []; @@ -988,6 +1018,7 @@ export default { if(row != null) { this.bizQuery.batchNo = row.batchNo; this.bizQuery.relId = row.bindRlFk; + this.bizQuery.bizIdFk = row.id; } filterListInvoice(this.bizQuery).then((res) => { this.bizDetailLoading = false; @@ -1044,7 +1075,8 @@ export default { closeAcceptDialog() { this.Upinvoice = false; this.getBizDetailListInv(); - }, + this.getOrderDetails(); + }, closeInvoice(row) { this.InvoiceRegisterv = false; diff --git a/src/views/inout/InvoiceRegistrationDetermine.vue b/src/views/inout/InvoiceRegistrationDetermine.vue index c5eb8a2..7c8b72d 100644 --- a/src/views/inout/InvoiceRegistrationDetermine.vue +++ b/src/views/inout/InvoiceRegistrationDetermine.vue @@ -46,6 +46,16 @@ row-key="id" highlight-current-row > + + + + 未登记 + + + 全部登记 + + + { - this.closeDialog(); - }).catch((error) => { + let index = this.codeDetailList.findIndex(item=>item.regStatus==false) + if(index!=-1){ + this.$confirm("还有未登记的发票, 是否继续提交?", "提示", { + confirmButtonText: "确定", + cancelButtonText: "取消", + type: "warning", + }).then( ()=>{ + updateOrder(data).then((res) => { + this.closeDialog(); + }).catch((error) => { + }) + }).catch( ()=>{ + + }) + + } + - }) }, showImgViewer(row) { this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";