diff --git a/anrui-buscenter/anrui-buscenter-ui/src/api/zhengchangkaipiao/openTicket.js b/anrui-buscenter/anrui-buscenter-ui/src/api/zhengchangkaipiao/openTicket.js
index 1db7590c50..7b6335677f 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/api/zhengchangkaipiao/openTicket.js
+++ b/anrui-buscenter/anrui-buscenter-ui/src/api/zhengchangkaipiao/openTicket.js
@@ -74,6 +74,15 @@ export function submitFinBillApplication(data) {
})
}
+// 查看图片
+export function fetchFileBySid(data) {
+ return request({
+ url: '/fin/v1/finbillfile/fetchFileBySid',
+ method: 'post',
+ params: data
+ })
+}
+
// 待办任务同意办理
export function businessAgree(data) {
return request({
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/multifileUpload.vue b/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/multifileUpload.vue
new file mode 100644
index 0000000000..2e872ec2c9
--- /dev/null
+++ b/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/multifileUpload.vue
@@ -0,0 +1,87 @@
+
+
+
+
+ 选择文件
+ 单个文件大小不允许超过100M,支持上传文件类型: {{ accept }}
+
+
+
+
+
+
+
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/router/index.js b/anrui-buscenter/anrui-buscenter-ui/src/router/index.js
index dd7fbf4f3d..483c88c952 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/router/index.js
+++ b/anrui-buscenter/anrui-buscenter-ui/src/router/index.js
@@ -636,6 +636,22 @@ export const constantRoutes = [{
component: () =>
import('@/views/workflow/gaizhangguanliFlow/gaizhangshenqingguanli/gaizhangshenqingEdit.vue'),
name: 'gaizhangshenqingEdit'
+ },
+
+ // 开票管理
+ // 正常开票申请详情
+ {
+ path: '/kaipiaoguanliFlow/zhengchangkaipiaoguanli/zhengchangkaipiaoInfo.vue',
+ component: () =>
+ import('@/views/workflow/kaipiaoguanliFlow/zhengchangkaipiaoguanli/zhengchangkaipiaoInfo.vue'),
+ name: 'zhengchangkaipiaoguanliInfo'
+ },
+ // 正常开票申请编辑
+ {
+ path: '/kaipiaoguanliFlow/zhengchangkaipiaoguanli/zhengchangkaipiaoEdit.vue',
+ component: () =>
+ import('@/views/workflow/kaipiaoguanliFlow/zhengchangkaipiaoguanli/zhengchangkaipiaoEdit.vue'),
+ name: 'zhengchangkaipiaoEdit'
}
// 销售订单
// 销售管理详情
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/kaipiaoguanli/zhengchangkaipiaoguanli/zhangchangkaipiaoguanli.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/kaipiaoguanli/zhengchangkaipiaoguanli/zhangchangkaipiaoguanli.vue
index 9973e51caf..fe480ec706 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/views/kaipiaoguanli/zhengchangkaipiaoguanli/zhangchangkaipiaoguanli.vue
+++ b/anrui-buscenter/anrui-buscenter-ui/src/views/kaipiaoguanli/zhengchangkaipiaoguanli/zhangchangkaipiaoguanli.vue
@@ -38,7 +38,7 @@
-
+
至
@@ -60,7 +60,7 @@
- 办理
+ 办理
查看
@@ -113,8 +113,8 @@
-
-
+
+
@@ -170,12 +170,12 @@ export default {
// 数据字典加载
DataDictionary() {
dataDictionary({ type: 'invoiceType' }).then((res) => {
- if (res.code === '200') {
+ if (res.success) {
this.billType_list = res.data
}
})
namesDown().then((res) => {
- if (res.code === '200') {
+ if (res.success) {
this.billName_list = res.data
}
})
@@ -200,7 +200,7 @@ export default {
this.listLoading = true
listPage(this.listQuery).then((response) => {
this.listLoading = false
- if (response.code === '200') {
+ if (response.success) {
this.listQuery.total = response.data.total
this.list = response.data.records
}
@@ -208,6 +208,7 @@ export default {
},
// 查询按钮
handleFilter() {
+ this.listQuery.current = 1
this.getList()
},
handReset() {
@@ -234,13 +235,12 @@ export default {
this.viewState = 2
this.$refs['divAdd'].showEdit(row)
},
- handlook(row) {
+ handLook(row) {
this.viewState = 3
this.$refs['divInfo'].showInfo(row)
},
resetState() {
this.viewState = 1
- this.handReset()
}
}
}
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/kaipiaoguanli/zhengchangkaipiaoguanli/zhengchangkaipiaoAdd.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/kaipiaoguanli/zhengchangkaipiaoguanli/zhengchangkaipiaoAdd.vue
index 572be02091..67bf8d912e 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/views/kaipiaoguanli/zhengchangkaipiaoguanli/zhengchangkaipiaoAdd.vue
+++ b/anrui-buscenter/anrui-buscenter-ui/src/views/kaipiaoguanli/zhengchangkaipiaoguanli/zhengchangkaipiaoAdd.vue
@@ -6,12 +6,12 @@
保存
- 提交
+ 提交
- 返回
+ 关闭
-
+
公司申请入账单
@@ -20,7 +20,7 @@
-
+
@@ -30,7 +30,7 @@
-
+
@@ -40,33 +40,35 @@
-
+
开票信息
- 单台开票金额:
+ 单台开票金额:
+
+
-
+
-
+ {{ scope.row.VIN }}
-
+
-
+
-
+
@@ -83,7 +85,20 @@
- {{ formobj.configName }}
+ {{ NumberMul() }}
+
+
+
+
+
+
+
+
+
+
+ 是
+ 否
+
@@ -93,7 +108,7 @@
-
+
@@ -103,77 +118,120 @@
- {{ formobj.configName }}
+ {{ formobj.billState }}
-
+
-
+
- 上传
+
+
+ 删除
+
-
+
-
-
-
-
-
-
+ {{ scope.row.fileName }}
-
+
-
+ {{ scope.row.uploadName }}
-
+
-
+ {{ scope.row.uploadTime }}
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/kaipiaoguanliFlow/zhengchangkaipiaoguanli/zhengchangkaipiaoEdit.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/kaipiaoguanliFlow/zhengchangkaipiaoguanli/zhengchangkaipiaoEdit.vue
new file mode 100644
index 0000000000..b7d3343ad3
--- /dev/null
+++ b/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/kaipiaoguanliFlow/zhengchangkaipiaoguanli/zhengchangkaipiaoEdit.vue
@@ -0,0 +1,583 @@
+
+
+
+
+
+
公司申请入账单
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
开票信息
+
+ 单台开票金额:
+
+
+
+
+
+
+
+
+ {{ scope.row.VIN }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ NumberMul() }}
+
+
+
+
+
+
+
+
+
+
+ 是
+ 否
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ formobj.billState }}
+
+
+
+
+
+
+
+
+
+
+ 删除
+
+
+
+
+
+ {{ scope.row.fileName }}
+
+
+
+
+ {{ scope.row.uploadName }}
+
+
+
+
+ {{ scope.row.uploadTime }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/kaipiaoguanliFlow/zhengchangkaipiaoguanli/zhengchangkaipiaoInfo.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/kaipiaoguanliFlow/zhengchangkaipiaoguanli/zhengchangkaipiaoInfo.vue
new file mode 100644
index 0000000000..1f92d42f22
--- /dev/null
+++ b/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/kaipiaoguanliFlow/zhengchangkaipiaoguanli/zhengchangkaipiaoInfo.vue
@@ -0,0 +1,594 @@
+
+
+
+
+
+
公司申请入账单
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
开票信息
+
+ 单台开票金额:{{ formobj.oneBillMoney }}
+
+
+
+
+
+
+ {{ scope.row.VIN }}
+
+
+
+
+ {{ scope.row.billTypeValue }}
+
+
+
+
+ {{ scope.row.billName }}
+
+
+
+
+ {{ scope.row.remarks }}
+
+
+
+
+
+
+
+
+
+ {{ formobj.totalBillMoney }}
+
+
+
+
+
+
+
+
+
+ {{ formobj.isDelayBill == '1' ? '是' : '否' }}
+
+
+
+
+
+
+
+
+
+ {{ formobj.remarks }}
+
+
+
+
+
+
+
+
+
+ {{ formobj.billState }}
+
+
+
+
+
+
+
+
+ {{ scope.row.fileName }}
+
+
+
+
+ {{ scope.row.uploadName }}
+
+
+
+
+ {{ scope.row.uploadTime }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+