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/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 @@ - + 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 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 新增申请 + + + + 再次申请 + + + + 撤销 + + + + 删除 + + + 导出 + + + + + + + + + + + + + + + + + + + + + + + + + + 未审核 + 已审核 + 已驳回 + 已撤销 + + + + + + + + + + + + +