|
@@ -1,110 +1,110 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <!-- 发票审核-->
|
|
|
|
|
- <a-modal class="add-custom custom-detail"
|
|
|
|
|
- title="发票审核"
|
|
|
|
|
- v-model:visible="visible"
|
|
|
|
|
- centered
|
|
|
|
|
- :maskClosable="maskClosableFlag"
|
|
|
|
|
- @cancel="cancel"
|
|
|
|
|
- width="890px">
|
|
|
|
|
- <template #footer>
|
|
|
|
|
- <a-button key="submit"
|
|
|
|
|
- type="primary"
|
|
|
|
|
- :loading="loading"
|
|
|
|
|
- @click="cancel">关闭
|
|
|
|
|
- </a-button>
|
|
|
|
|
- <a-button key="submit"
|
|
|
|
|
- type="primary"
|
|
|
|
|
- :loading="loading"
|
|
|
|
|
- @click="pass">审核通过
|
|
|
|
|
- </a-button>
|
|
|
|
|
- <a-button key="submit"
|
|
|
|
|
- type="primary"
|
|
|
|
|
- :loading="loading"
|
|
|
|
|
- @click="refuse">审核拒绝
|
|
|
|
|
- </a-button>
|
|
|
|
|
- </template>
|
|
|
|
|
- <a-form class="inlineForm">
|
|
|
|
|
- <fieldset class="formFieldSet">
|
|
|
|
|
- <legend>合同基本信息</legend>
|
|
|
|
|
- <a-row :gutter="24">
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="合同编号">
|
|
|
|
|
- <span class="white">{{ formatValue(selectedRow.contractno) }}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="点价类型">
|
|
|
|
|
- <span class="white">{{ getPriceTypeName(selectedRow.pricetype) }}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- <a-row :gutter="24">
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="销售方">
|
|
|
|
|
- <span class="white">{{ formatValue(selectedRow.sellusername) }}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="现货品种">
|
|
|
|
|
- <span class="white">{{ formatValue(selectedRow.deliverygoodsname) }}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- </fieldset>
|
|
|
|
|
- <fieldset class="formFieldSet">
|
|
|
|
|
- <legend>待审核登记信息</legend>
|
|
|
|
|
- <a-row :gutter="24">
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="类型">
|
|
|
|
|
- <span class="white">{{ invoiceStatusName(selectedRow.contracttype) }}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="发票金额">
|
|
|
|
|
- <span class="white">{{ formatValue(selectedRow.invoiceamount) }}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- <a-row :gutter="24">
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="发票附件">
|
|
|
|
|
- <span class="white">{{ formatValue(selectedRow.invoiceamount) }}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="登记时间">
|
|
|
|
|
- <span class="white">{{ formatValue(selectedRow.applytime) }}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- <a-row :gutter="24">
|
|
|
|
|
- <a-col :span="12">
|
|
|
|
|
- <a-form-item label="登记人">
|
|
|
|
|
- <span class="white">{{ formatValue(selectedRow.applyname) }}</span>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- </fieldset>
|
|
|
|
|
- </a-form>
|
|
|
|
|
- </a-modal>
|
|
|
|
|
|
|
+ <!-- 发票审核-->
|
|
|
|
|
+ <a-modal class="add-custom custom-detail"
|
|
|
|
|
+ title="发票审核"
|
|
|
|
|
+ v-model:visible="visible"
|
|
|
|
|
+ centered
|
|
|
|
|
+ :maskClosable="maskClosableFlag"
|
|
|
|
|
+ @cancel="cancel"
|
|
|
|
|
+ width="890px">
|
|
|
|
|
+ <template #footer>
|
|
|
|
|
+ <a-button key="submit"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :loading="loading"
|
|
|
|
|
+ @click="cancel">关闭
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ <a-button key="submit"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :loading="loading"
|
|
|
|
|
+ @click="pass">审核通过
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ <a-button key="submit"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :loading="loading"
|
|
|
|
|
+ @click="refuse">审核拒绝
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <a-form class="inlineForm">
|
|
|
|
|
+ <fieldset class="formFieldSet">
|
|
|
|
|
+ <legend>合同基本信息</legend>
|
|
|
|
|
+ <a-row :gutter="24">
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item label="合同编号">
|
|
|
|
|
+ <span class="white">{{ formatValue(selectedRow.contractno) }}</span>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item label="点价类型">
|
|
|
|
|
+ <span class="white">{{ getPriceTypeName(selectedRow.pricetype) }}</span>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ <a-row :gutter="24">
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item label="销售方">
|
|
|
|
|
+ <span class="white">{{ formatValue(selectedRow.sellusername) }}</span>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item label="现货品种">
|
|
|
|
|
+ <span class="white">{{ formatValue(selectedRow.deliverygoodsname) }}</span>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ </fieldset>
|
|
|
|
|
+ <fieldset class="formFieldSet">
|
|
|
|
|
+ <legend>待审核登记信息</legend>
|
|
|
|
|
+ <a-row :gutter="24">
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item label="类型">
|
|
|
|
|
+ <span class="white">{{ invoiceStatusName(selectedRow.contracttype) }}</span>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item label="发票金额">
|
|
|
|
|
+ <span class="white">{{ formatValue(selectedRow.InvoiceAmount) }}</span>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ <a-row :gutter="24">
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item label="发票附件">
|
|
|
|
|
+ <span class="white">{{ formatValue(selectedRow.invoiceamount) }}</span>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item label="登记时间">
|
|
|
|
|
+ <span class="white">{{ formatValue(selectedRow.applytime) }}</span>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ <a-row :gutter="24">
|
|
|
|
|
+ <a-col :span="12">
|
|
|
|
|
+ <a-form-item label="登记人">
|
|
|
|
|
+ <span class="white">{{ formatValue(selectedRow.applyname) }}</span>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ </fieldset>
|
|
|
|
|
+ </a-form>
|
|
|
|
|
+ </a-modal>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
<script lang="ts">
|
|
|
-import { defineComponent, PropType, reactive, ref, watchEffect } from 'vue';
|
|
|
|
|
-import { closeModal } from '@/common/setup/modal/index';
|
|
|
|
|
-import { QueryCustomInfoType } from '@/services/go/ermcp/customInfo/interface';
|
|
|
|
|
-import { mergeObj } from '@/utils/objHandle';
|
|
|
|
|
-import { getStatusName } from '@/common/constants/enumsName';
|
|
|
|
|
-import { formatValue, formatTime } from '@/common/methods';
|
|
|
|
|
-import { QryBussinessFpRsp } from '@/services/go/ermcp/finance-review/interface';
|
|
|
|
|
-import { invoiceStatusName } from '@/views/manage/finance-review/setup';
|
|
|
|
|
-import { getPriceTypeName } from '@/views/information/spot-contract/setup';
|
|
|
|
|
-import { Modal } from 'ant-design-vue';
|
|
|
|
|
-import { ContractOperateApplyReq } from '@/services/proto/contract/interface';
|
|
|
|
|
|
|
+import {defineComponent, PropType, reactive, ref, watchEffect} from 'vue';
|
|
|
|
|
+import {closeModal} from '@/common/setup/modal/index';
|
|
|
|
|
+import {QueryCustomInfoType} from '@/services/go/ermcp/customInfo/interface';
|
|
|
|
|
+import {mergeObj} from '@/utils/objHandle';
|
|
|
|
|
+import {getStatusName} from '@/common/constants/enumsName';
|
|
|
|
|
+import {formatValue, formatTime} from '@/common/methods';
|
|
|
|
|
+import {QryBussinessFpRsp} from '@/services/go/ermcp/finance-review/interface';
|
|
|
|
|
+import {invoiceStatusName} from '@/views/manage/finance-review/setup';
|
|
|
|
|
+import {getPriceTypeName} from '@/views/information/spot-contract/setup';
|
|
|
|
|
+import {Modal} from 'ant-design-vue';
|
|
|
|
|
+import {ContractOperateApplyReq} from '@/services/proto/contract/interface';
|
|
|
import Long from 'long';
|
|
import Long from 'long';
|
|
|
-import { somePriceControl } from '@/views/manage/business-review/components/setup';
|
|
|
|
|
-import { financeControl } from '@/views/manage/finance-review/components/setup';
|
|
|
|
|
|
|
+import {somePriceControl} from '@/views/manage/business-review/components/setup';
|
|
|
|
|
+import {financeControl} from '@/views/manage/finance-review/components/setup';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
name: 'finance_review_invoice_audit',
|
|
name: 'finance_review_invoice_audit',
|
|
@@ -116,9 +116,10 @@ export default defineComponent({
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
setup(props, context) {
|
|
setup(props, context) {
|
|
|
- const { visible, cancel } = closeModal('finance_review_invoice_audit');
|
|
|
|
|
|
|
+ const {visible, cancel} = closeModal('finance_review_invoice_audit');
|
|
|
const loading = ref<boolean>(false);
|
|
const loading = ref<boolean>(false);
|
|
|
const maskClosableFlag = ref<boolean>(false);
|
|
const maskClosableFlag = ref<boolean>(false);
|
|
|
|
|
+
|
|
|
function submit() {
|
|
function submit() {
|
|
|
loading.value = true;
|
|
loading.value = true;
|
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
@@ -126,6 +127,7 @@ export default defineComponent({
|
|
|
cancel();
|
|
cancel();
|
|
|
}, 200);
|
|
}, 200);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 审核通过
|
|
// 审核通过
|
|
|
function pass() {
|
|
function pass() {
|
|
|
Modal.confirm({
|
|
Modal.confirm({
|
|
@@ -142,13 +144,15 @@ export default defineComponent({
|
|
|
context.emit('refresh');
|
|
context.emit('refresh');
|
|
|
cancel();
|
|
cancel();
|
|
|
})
|
|
})
|
|
|
- .catch((err) => {});
|
|
|
|
|
|
|
+ .catch((err) => {
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
onCancel() {
|
|
onCancel() {
|
|
|
console.log('Cancel');
|
|
console.log('Cancel');
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 审核拒绝
|
|
// 审核拒绝
|
|
|
function refuse() {
|
|
function refuse() {
|
|
|
Modal.confirm({
|
|
Modal.confirm({
|
|
@@ -165,7 +169,8 @@ export default defineComponent({
|
|
|
context.emit('refresh');
|
|
context.emit('refresh');
|
|
|
cancel();
|
|
cancel();
|
|
|
})
|
|
})
|
|
|
- .catch((err) => {});
|
|
|
|
|
|
|
+ .catch((err) => {
|
|
|
|
|
+ });
|
|
|
},
|
|
},
|
|
|
onCancel() {
|
|
onCancel() {
|
|
|
console.log('Cancel');
|
|
console.log('Cancel');
|