From c29dc919d38c560fd2d6edea65e99bc2834adf54 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Mon, 3 Apr 2023 13:58:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E7=A5=A8=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/anruifinmanagement/fininvoiceapply.js | 24 +- .../src/components/uploadFile/FileUpload.vue | 283 +++++----- .../src/router/modules/codemenu.js | 35 +- .../billingmanagement/billingmanagement.vue | 355 ++++++++++++ .../billingmanagementAdd.vue | 130 +++++ .../billingmanagementInfo.vue | 115 ++++ .../fininvoiceapply/fininvoiceapply.vue | 514 ------------------ .../fingwaitinvoiceapply.vue | 474 ---------------- .../fingwaitinvoiceapplyAdd.vue | 458 ---------------- 9 files changed, 755 insertions(+), 1633 deletions(-) create mode 100644 anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagement.vue create mode 100644 anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagementAdd.vue create mode 100644 anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagementInfo.vue delete mode 100644 anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/fininvoiceapply/fininvoiceapply.vue delete mode 100644 anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/finwaitinvoiceapply/fingwaitinvoiceapply.vue delete mode 100644 anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/finwaitinvoiceapply/fingwaitinvoiceapplyAdd.vue diff --git a/anrui-buscenter/anrui-finmanage-ui/src/api/anruifinmanagement/fininvoiceapply.js b/anrui-buscenter/anrui-finmanage-ui/src/api/anruifinmanagement/fininvoiceapply.js index d54c3ea440..abd0858fa5 100644 --- a/anrui-buscenter/anrui-finmanage-ui/src/api/anruifinmanagement/fininvoiceapply.js +++ b/anrui-buscenter/anrui-finmanage-ui/src/api/anruifinmanagement/fininvoiceapply.js @@ -1,7 +1,6 @@ import request from '@/utils/request' -// import qs from 'qs' -// 开票申请列表条件查询 +// 开票管理列表条件查询 export function listPage(data) { return request({ url: '/fin/v1/finginvoiceapply/listPage', @@ -12,24 +11,3 @@ export function listPage(data) { } }) } - -// 模糊搜索客户 -export function customerName() { - return request({ - url: "/buscenter/v1/busorder/likeGetCustomerName", - method: "post" - // params: { staffSid: id } - }); -} - -// 获取下拉框option -export function typeValues(data) { - return request({ - url: '/portal/v1/dictcommons/typeValues', - method: 'get', - params: data - // headers: { - // 'Content-Type':'multipart/form-data', - // } - }) -} diff --git a/anrui-buscenter/anrui-finmanage-ui/src/components/uploadFile/FileUpload.vue b/anrui-buscenter/anrui-finmanage-ui/src/components/uploadFile/FileUpload.vue index 7f5fba3f43..5422158b47 100644 --- a/anrui-buscenter/anrui-finmanage-ui/src/components/uploadFile/FileUpload.vue +++ b/anrui-buscenter/anrui-finmanage-ui/src/components/uploadFile/FileUpload.vue @@ -1,165 +1,154 @@ - - 点击上传 - 单个文件大小不允许超过100M,支持上传文件类型:{{ accept }} + + 上传 - + + diff --git a/anrui-buscenter/anrui-finmanage-ui/src/router/modules/codemenu.js b/anrui-buscenter/anrui-finmanage-ui/src/router/modules/codemenu.js index a560f92493..d172a9badd 100644 --- a/anrui-buscenter/anrui-finmanage-ui/src/router/modules/codemenu.js +++ b/anrui-buscenter/anrui-finmanage-ui/src/router/modules/codemenu.js @@ -11,8 +11,8 @@ const codemenu = [ }, children: [ { - path: '/anruifinmanagement/finginvoiceapply', - component: () => import('@/views/anruifinmanagement/finginvoiceapply/finwaitinvoiceapply/fingwaitinvoiceapply.vue'), + path: '/anruifinmanagement/finginvoiceapply/backups', + component: () => import('@/views/anruifinmanagement/finginvoiceapply/backups/finginvoiceapply.vue'), name: 'finginvoiceapply', meta: { title: '公司开票申请管理', noCache: true } } @@ -74,21 +74,6 @@ const codemenu = [ } ] }, - // 第四项:物料信息管理 - // { - // path: '/finmaterial', - // component: Layout, - // redirect: '/finmaterial', - // meta: { - // title: '物料信息管理' - // }, - // children: [{ - // path: '/anruifinmanagement/finmaterial', - // component: () => import('@/views/anruifinmanagement/finmaterial/finmaterial.vue'), - // name: 'finmaterial', - // meta: { title: '物料信息管理',noCache:false } - // }] - // }, // 第五项:费用项目管理 { path: '/finitem', @@ -185,6 +170,22 @@ const codemenu = [ meta: { title: '开票信息管理', noCache: true } }] }, + + // 开票信息管理 + { + path: '/finginvoiceapply', + component: Layout, + redirect: '/finginvoiceapply', + meta: { + title: '开票' + }, + children: [{ + path: '/anruifinmanagement/finginvoiceapply/billingmanagement', + component: () => import('@/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagement.vue'), + name: 'KaiPiaoGuanLi', + meta: { title: '开票', noCache: true } + }] + }, // 费用申请管理编辑 { path: '/feiyongguanliFlow/feiyongguanli/feiyongEdit', diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagement.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagement.vue new file mode 100644 index 0000000000..f6efd49459 --- /dev/null +++ b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagement.vue @@ -0,0 +1,355 @@ + + + + + + + + {{ searchxianshitit }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 至 + + + + + 查询 + 重置 + + + + + 发票列表 + + + + + + + + 编辑 + 查看 + + + + + {{ scope.row.state }} + + + + + {{ scope.row.state }} + + + + + {{ scope.row.proSchAppNo }} + + + + + {{ scope.row.applyType }} + + + + + {{ scope.row.paymentMoney }} + + + + + {{ scope.row.paymentState }} + + + + + {{ scope.row.subscriptionDate }} + + + + + {{ scope.row.subscriptionPeo }} + + + + + {{ scope.row.subscriptionPeo }} + + + + + {{ scope.row.subscriptionPeo }} + + + + + {{ scope.row.subscriptionPeo }} + + + + + {{ scope.row.subscriptionPeo }} + + + + + 查看 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagementAdd.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagementAdd.vue new file mode 100644 index 0000000000..4e10163f1e --- /dev/null +++ b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagementAdd.vue @@ -0,0 +1,130 @@ + + + + + {{ viewTitle }} + + + 保存 + + 关闭 + + + + 发票信息 + + + + 开票单位 + {{ formobj.name }} + + + + + 合同编号 + {{ formobj.name }} + + + 客户名称 + {{ formobj.name }} + + + 车架号 + {{ formobj.name }} + + + + + 开票类型 + {{ formobj.name }} + + + 开票金额 + {{ formobj.name }} + + + 开票状态 + {{ formobj.name }} + + + + + 开票名称 + {{ formobj.name }} + + + + + 开票人 + {{ formobj.name }} + + + 开票日期 + + + + + + 发票号 + + + + 发票代码 + + + + + + 发票照片 + + + + + + + + + + + + + diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagementInfo.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagementInfo.vue new file mode 100644 index 0000000000..f1e6355e30 --- /dev/null +++ b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/billingmanagement/billingmanagementInfo.vue @@ -0,0 +1,115 @@ + + + + + {{ viewTitle }} + + + 关闭 + + + + 发票信息 + + + + 开票单位 + {{ formobj.name }} + + + + + 合同编号 + {{ formobj.name }} + + + 客户名称 + {{ formobj.name }} + + + 车架号 + {{ formobj.name }} + + + + + 开票类型 + {{ formobj.name }} + + + 开票金额 + {{ formobj.name }} + + + 开票状态 + {{ formobj.name }} + + + + + 开票名称 + {{ formobj.name }} + + + + + 开票人 + {{ formobj.name }} + + + 开票日期 + {{ formobj.name }} + + + + + 发票号 + {{ formobj.name }} + + + 发票代码 + {{ formobj.name }} + + + + + 发票照片 + {{ formobj.name }} + + + + + + + + + + diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/fininvoiceapply/fininvoiceapply.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/fininvoiceapply/fininvoiceapply.vue deleted file mode 100644 index a0fdf573e0..0000000000 --- a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/fininvoiceapply/fininvoiceapply.vue +++ /dev/null @@ -1,514 +0,0 @@ - - - - - - - 公司开票申请列表 - - - 提前开票 - - 提交 - 删除 - - - - - - - - 待开票车辆列表 - 开票申请列表 - - - - {{ searchxianshitit }} - - - - - - - - - - - - - - - - - - - - - - - - - - - 至 - - - - - - - - 查询 - 重置 - - - - - - - - 公司开票申请列表 - - - - - - - - - - - 办理 - - 查看 - - - - - - {{ scope.row.invoiceType }} - - - - - {{ scope.row.billNo }} - - - - - {{ scope.row.customerName }} - - - - - {{ scope.row.vehicleQuantity }} - - - - - {{ scope.row.invoiceMoney }} - - - - - {{ scope.row.isOwedMoney }} - - - - - {{ scope.row.createByName }} - - - - - {{ scope.row.createTime }} - - - - - - - - - - - - - - - - - - diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/finwaitinvoiceapply/fingwaitinvoiceapply.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/finwaitinvoiceapply/fingwaitinvoiceapply.vue deleted file mode 100644 index 835d04cece..0000000000 --- a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/finwaitinvoiceapply/fingwaitinvoiceapply.vue +++ /dev/null @@ -1,474 +0,0 @@ - - - - - - - - 待开票车辆列表 - - - 开票申请 - - - - - - - - - 待开票车辆列表 - 开票申请列表 - - - - {{ searchxianshitit }} - - - - - - - - - - - - - - - - 查询 - 重置 - - - - - - - 待开票车辆列表 - - - - - - - - - - {{ scope.row.invoiceType }} - - - - - {{ scope.row.contractNo }} - - - - - {{ scope.row.customerName}} - - - - - {{ scope.row.VINNo }} - - - - - - - - - - - - - - - - - - - - - diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/finwaitinvoiceapply/fingwaitinvoiceapplyAdd.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/finwaitinvoiceapply/fingwaitinvoiceapplyAdd.vue deleted file mode 100644 index 8923d4115e..0000000000 --- a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/finginvoiceapply/finwaitinvoiceapply/fingwaitinvoiceapplyAdd.vue +++ /dev/null @@ -1,458 +0,0 @@ - - - - - - {{ viewTitle }} - - - - 保存 - - 提交 - - 打印 - 关闭 - - - - - - 公司开票申请单 - - - - - - - - - - - - - - - - - - - - - - - 开票信息 - - 添加 - - - - - - - {{props.row.vinno}} - - - - - {{props.row.dealInvoiceUnitPrice}} - - - - - - - - - - - - - - - - - - - - - - - - - 开票金额总计 - - - - {{ ruleForm.invoiceSumMoney }} - - - - - - 备注 - - - - - - - - - - 开票状态 - - - - - - - - - - - - 所附资料附件 - - - - 点击上传 - - - - - - - - 删除 - - - - - - {{ props.row.fileName }} - - - - - {{ props.row.fileType }} - - - - - {{ props.row.createByName }} - - - - - - - - - - - - - -