From f32052dec9e9f3ee67c2a5f4a2207fbb2b74e425 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Mon, 19 Jan 2026 11:43:04 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E7=BB=84=E6=89=B9=E6=AC=A1=E8=A7=84?= =?UTF-8?q?=E5=88=99=E7=BB=B4=E6=8A=A4=EF=BC=8C=E7=94=9F=E6=95=88=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E3=80=81=E5=A4=B1=E6=95=88=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisTransPlanRule/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/emis/emisTransPlanRule/index.vue b/src/views/emis/emisTransPlanRule/index.vue index 3e04197e..2cf32782 100644 --- a/src/views/emis/emisTransPlanRule/index.vue +++ b/src/views/emis/emisTransPlanRule/index.vue @@ -20,11 +20,11 @@ - + From e3f7dc8dee7f9d108f30f6b5de7b63376a714181 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Fri, 23 Jan 2026 17:43:19 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=8F=91=E7=A5=A8=E4=BD=9C=E5=BA=9F?= =?UTF-8?q?=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/emis/emisInvoiceCancellation.js | 64 ++++ .../emisSettleBill/InvoiceReversalList.vue | 335 +++++++++++++++++ .../InvoiceCancellationForm.vue | 224 ++++++++++++ .../InvoiceCancellationList.vue | 344 ++++++++++++++++++ 4 files changed, 967 insertions(+) create mode 100644 src/api/emis/emisInvoiceCancellation.js create mode 100644 src/views/emis/emisSettleBill/InvoiceReversalList.vue create mode 100644 src/views/emis/emisWaybillAjustApply/InvoiceCancellationForm.vue create mode 100644 src/views/emis/emisWaybillAjustApply/InvoiceCancellationList.vue diff --git a/src/api/emis/emisInvoiceCancellation.js b/src/api/emis/emisInvoiceCancellation.js new file mode 100644 index 00000000..828566b7 --- /dev/null +++ b/src/api/emis/emisInvoiceCancellation.js @@ -0,0 +1,64 @@ +import request from '@/utils/request' + +// 查询发票作废列表 +export function listEmisInvoiceCancellation(query) { + return request({ + url: '/emis/emisInvoiceCancellation/list', + method: 'get', + params: query + }) +} + +//查询发票作废详情 +export function getEmisInvoiceCancellation(id) { + return request({ + url: '/emis/emisInvoiceCancellation/' + id, + method: 'get' + }) +} + +//根据申请序号查询发票信息 +export function getInvoiceInfoByApplySeqNo(applySeqNo ) { + return request({ + url: '/emis/emisInvoiceCancellation/invoiceInfo?applySeqNo='+applySeqNo, + method: 'get' + }) +} + +//发票作废申请POST请求 +export function addEmisInvoiceCancellation(data) { + return request({ + url: '/emis/emisInvoiceCancellation', + method: 'post', + data: data + }) +} +//发票作废删除 +export function delEmisInvoiceCancellation(id) { + return request({ + url: '/emis/emisInvoiceCancellation/' + id, + method: 'delete' + }) +} +//撤销申请 +export function cancelEmisInvoiceCancellation(ids) { + return request({ + url: '/emis/emisInvoiceCancellation/cancel/' + ids, + method: 'post' + }) +} +// 审核通过 +export function passEmisInvoiceCancellation(ids) { + return request({ + url: '/emis/emisInvoiceCancellation/audit/pass/' + ids, + method: 'post' + }) +} +//审核驳回 +export function rejectEmisInvoiceCancellation(data) { + return request({ + url: `/emis/emisInvoiceCancellation/audit/reject/${data.ids}`, + method: 'post', + data: data + }) +} diff --git a/src/views/emis/emisSettleBill/InvoiceReversalList.vue b/src/views/emis/emisSettleBill/InvoiceReversalList.vue new file mode 100644 index 00000000..86cb6da1 --- /dev/null +++ b/src/views/emis/emisSettleBill/InvoiceReversalList.vue @@ -0,0 +1,335 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 审核通过 + + + + 中心驳回 + + + 导出 + + + 查看 + + + + + + + + + + + + + + + + + + + + + + + + + + 未审核 + 已审核 + 已驳回 + 已撤销 + + + + + + + + + + + + + + + diff --git a/src/views/emis/emisWaybillAjustApply/InvoiceCancellationForm.vue b/src/views/emis/emisWaybillAjustApply/InvoiceCancellationForm.vue new file mode 100644 index 00000000..b2a67d54 --- /dev/null +++ b/src/views/emis/emisWaybillAjustApply/InvoiceCancellationForm.vue @@ -0,0 +1,224 @@ + + + + + + + + + {{ form.applySeqNo }} + + + + + + + + + + 未开票 + 开票中 + 已开票 + 开票异常 + + + + + + + + + + + + 将文件拖到此处,或点击上传 支持 png/pdf/jpg,单文件≤5M + + + {{ item.name }} + + + + + 确 定 + 取 消 + + + + + + diff --git a/src/views/emis/emisWaybillAjustApply/InvoiceCancellationList.vue b/src/views/emis/emisWaybillAjustApply/InvoiceCancellationList.vue new file mode 100644 index 00000000..f0164ef1 --- /dev/null +++ b/src/views/emis/emisWaybillAjustApply/InvoiceCancellationList.vue @@ -0,0 +1,344 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 新增申请 + + + + 再次申请 + + + + 撤销 + + + + 删除 + + + 导出 + + + + + + + + + + + + + + + + + + + + + + + + + + 未审核 + 已审核 + 已驳回 + 已撤销 + + + + + + + + + + + + +