797 lines
28 KiB
Vue
797 lines
28 KiB
Vue
<template>
|
|
<basic-container class="receipt-form-page">
|
|
<div class="archive-page-form__title">
|
|
{{ readonly ? '查看收票登记' : recordId ? '编辑收票登记' : '新增收票登记' }}
|
|
</div>
|
|
|
|
<el-form
|
|
ref="formRef"
|
|
:model="form"
|
|
:rules="rules"
|
|
label-position="right"
|
|
label-width="auto"
|
|
class="receipt-form-page__form"
|
|
>
|
|
<section-card title="收票基本信息">
|
|
<el-row :gutter="32">
|
|
<el-col :span="6">
|
|
<el-form-item label="发票号码" prop="invoiceNo">
|
|
<el-input v-model="form.invoiceNo" readonly placeholder="请选择金蝶票据池发票">
|
|
<template v-if="!readonly" #append>
|
|
<el-tooltip content="查询金蝶票据池" placement="top">
|
|
<el-button :icon="Search" @click="openInvoiceDialog" />
|
|
</el-tooltip>
|
|
</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<el-form-item label="开票日期">
|
|
<el-input v-model="form.invoiceDate" disabled placeholder="从金蝶票据池带出" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<el-form-item label="发票类型">
|
|
<el-input v-model="form.invoiceType" disabled placeholder="从金蝶票据池带出" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<el-form-item label="税率">
|
|
<el-input
|
|
:model-value="formatRate(form.taxRate)"
|
|
disabled
|
|
placeholder="从金蝶票据池带出"
|
|
/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<el-form-item label="开票金额">
|
|
<el-input
|
|
:model-value="form.kingdeeInvoicePoolId ? formatMoney(form.invoiceAmount) : ''"
|
|
disabled
|
|
placeholder="从金蝶票据池带出"
|
|
/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<el-form-item label="税额">
|
|
<el-input
|
|
:model-value="form.kingdeeInvoicePoolId ? formatMoney(form.taxAmount) : ''"
|
|
disabled
|
|
placeholder="从金蝶票据池带出"
|
|
/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<el-form-item label="受票单位">
|
|
<el-input v-model="form.receiverName" disabled placeholder="从金蝶票据池带出" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<el-form-item label="开票单位">
|
|
<el-input v-model="form.issuerName" disabled placeholder="从金蝶票据池带出" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<el-form-item label="关联结算单" prop="settlementIds">
|
|
<el-input :model-value="settlementLabel" readonly placeholder="请选择应付正式结算单">
|
|
<template v-if="!readonly" #append>
|
|
<el-tooltip content="选择正式结算单" placement="top">
|
|
<el-button :icon="Search" @click="openSettlementDialog" />
|
|
</el-tooltip>
|
|
</template>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</section-card>
|
|
|
|
<section-card title="结算信息">
|
|
<el-table :data="form.settlements" border>
|
|
<el-table-column type="index" label="序号" width="64" align="center" />
|
|
<el-table-column label="结算单号" min-width="180" align="center">
|
|
<template #default="{ row }">
|
|
<el-link type="primary" @click="openSettlementDetail(row)">
|
|
{{ row.formalSettlementNo }}
|
|
</el-link>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="结算总金额" min-width="150" align="right">
|
|
<template #default="{ row }">{{ formatMoney(row.settlementAmount) }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="已收票金额" min-width="150" align="right">
|
|
<template #default="{ row }">{{ formatMoney(row.receivedInvoiceAmount) }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="分摊发票金额" min-width="180">
|
|
<template #default="{ row }">
|
|
<el-input-number
|
|
v-model="row.allocatedInvoiceAmount"
|
|
:disabled="readonly"
|
|
:min="0"
|
|
:max="remainingAmount(row)"
|
|
:precision="2"
|
|
:controls="false"
|
|
/>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</section-card>
|
|
|
|
<section-card title="附件信息">
|
|
<vehicle-attachment-table v-model="form.attachments" :readonly="readonly" />
|
|
</section-card>
|
|
|
|
<section-card title="备注">
|
|
<el-form-item class="receipt-form-page__remark">
|
|
<el-input
|
|
v-model="form.remark"
|
|
:disabled="readonly"
|
|
type="textarea"
|
|
:rows="2"
|
|
maxlength="200"
|
|
show-word-limit
|
|
/>
|
|
</el-form-item>
|
|
</section-card>
|
|
|
|
<div class="receipt-form-page__actions">
|
|
<el-button @click="goBack">取消</el-button>
|
|
<el-button v-if="!readonly" type="primary" plain @click="syncReferenceData">同步</el-button>
|
|
<el-button v-if="!readonly && canSave" type="primary" plain @click="saveDraft"
|
|
>保存</el-button
|
|
>
|
|
<el-button
|
|
v-if="!readonly && canSave && hasPermission('invoice_receipt_submit')"
|
|
type="primary"
|
|
@click="submitForm"
|
|
>提交</el-button
|
|
>
|
|
</div>
|
|
</el-form>
|
|
|
|
<el-dialog v-model="invoiceDialog.visible" title="查询金蝶票据池" width="86%" append-to-body>
|
|
<div class="receipt-form-page__dialog-search">
|
|
<el-input
|
|
v-model="invoiceDialog.keyword"
|
|
clearable
|
|
placeholder="发票号码、开票单位或受票单位"
|
|
@keyup.enter="loadInvoicePool"
|
|
/>
|
|
<el-button type="primary" @click="loadInvoicePool">查询</el-button>
|
|
</div>
|
|
<el-table
|
|
v-loading="invoiceDialog.loading"
|
|
:data="invoiceDialog.rows"
|
|
border
|
|
highlight-current-row
|
|
@current-change="invoiceDialog.current = $event"
|
|
@row-dblclick="confirmInvoice"
|
|
>
|
|
<el-table-column prop="invoiceNo" label="发票号码" min-width="180" />
|
|
<el-table-column prop="invoiceDate" label="开票日期" min-width="120" />
|
|
<el-table-column prop="invoiceType" label="发票类型" min-width="130" />
|
|
<el-table-column prop="issuerName" label="开票单位" min-width="170" />
|
|
<el-table-column prop="receiverName" label="受票单位" min-width="170" />
|
|
<el-table-column label="开票金额" min-width="130" align="right">
|
|
<template #default="{ row }">{{ formatMoney(row.invoiceAmount) }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="税率" min-width="100" align="center">
|
|
<template #default="{ row }">{{ formatRate(row.taxRate) }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="税额" min-width="120" align="right">
|
|
<template #default="{ row }">{{ formatMoney(row.taxAmount) }}</template>
|
|
</el-table-column>
|
|
<el-table-column prop="kingdeeBillNo" label="金蝶单据号" min-width="150" />
|
|
<el-table-column label="操作" width="100" fixed="right" align="center">
|
|
<template #default="{ row }">
|
|
<el-link type="primary" @click.stop="confirmInvoice(row)">选择</el-link>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<template #footer>
|
|
<el-button @click="invoiceDialog.visible = false">取消</el-button>
|
|
<el-button type="primary" @click="confirmInvoice()">确定</el-button>
|
|
</template>
|
|
</el-dialog>
|
|
|
|
<el-dialog
|
|
v-model="settlementDialog.visible"
|
|
title="选择应付正式结算单"
|
|
width="86%"
|
|
append-to-body
|
|
>
|
|
<div class="receipt-form-page__dialog-search">
|
|
<el-input
|
|
v-model="settlementDialog.keyword"
|
|
clearable
|
|
placeholder="结算单号、项目或合同"
|
|
@keyup.enter="loadSettlementCandidates"
|
|
/>
|
|
<el-button type="primary" @click="loadSettlementCandidates">查询</el-button>
|
|
</div>
|
|
<el-table
|
|
ref="settlementTable"
|
|
v-loading="settlementDialog.loading"
|
|
:data="settlementDialog.rows"
|
|
border
|
|
@selection-change="settlementDialog.selection = $event"
|
|
>
|
|
<el-table-column type="selection" width="52" align="center" />
|
|
<el-table-column prop="formalSettlementNo" label="结算单号" min-width="170" />
|
|
<el-table-column prop="projectName" label="所属项目" min-width="150" />
|
|
<el-table-column prop="deptName" label="所属组织" min-width="150" />
|
|
<el-table-column prop="contractNo" label="合同编号" min-width="150" />
|
|
<el-table-column prop="payerName" label="付款方" min-width="150" />
|
|
<el-table-column prop="payeeName" label="收款方" min-width="150" />
|
|
<el-table-column label="结算总金额" min-width="140" align="right">
|
|
<template #default="{ row }">{{ formatMoney(row.settlementAmount) }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="已收票金额" min-width="140" align="right">
|
|
<template #default="{ row }">{{ formatMoney(row.receivedInvoiceAmount) }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" width="100" fixed="right" align="center">
|
|
<template #default="{ row }">
|
|
<el-link type="primary" @click.stop="selectSettlement(row)">选择</el-link>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<template #footer>
|
|
<el-button @click="settlementDialog.visible = false">取消</el-button>
|
|
<el-button type="primary" @click="confirmSettlements">确定</el-button>
|
|
</template>
|
|
</el-dialog>
|
|
</basic-container>
|
|
</template>
|
|
|
|
<script>
|
|
import { Search } from '@element-plus/icons-vue';
|
|
import { mapGetters } from 'vuex';
|
|
import * as api from '@/api/payment/invoiceReceipt';
|
|
import VehicleAttachmentTable from '@/components/vehicle-attachment-table/main.vue';
|
|
|
|
const invoicePoolMockTemplates = [
|
|
{
|
|
id: 90000001,
|
|
invoiceNo: '25312000000000000101',
|
|
invoiceDate: '2026-08-25',
|
|
invoiceType: '增值税专用发票',
|
|
taxRate: 9,
|
|
invoiceAmount: 109000,
|
|
taxAmount: 9000,
|
|
receiverName: '华东供应链管理有限公司',
|
|
issuerName: '上海安捷运输有限公司',
|
|
bankName: '中国工商银行上海分行',
|
|
bankAccount: '1001000100000000019',
|
|
issuingBank: '中国工商银行上海分行营业部',
|
|
phone: '021-66880001',
|
|
customerEmails: 'finance@huadong.example.com',
|
|
departmentEmails: 'transport@huadong.example.com',
|
|
attachmentsJson: '[]',
|
|
kingdeeBillNo: 'KD-FP-20260825001',
|
|
},
|
|
{
|
|
id: 90000002,
|
|
invoiceNo: '25312000000000000102',
|
|
invoiceDate: '2026-08-26',
|
|
invoiceType: '增值税普通发票',
|
|
taxRate: 6,
|
|
invoiceAmount: 53000,
|
|
taxAmount: 3000,
|
|
receiverName: '华东供应链管理有限公司',
|
|
issuerName: '江苏联运物流有限公司',
|
|
bankName: '中国建设银行南京分行',
|
|
bankAccount: '3201000100000000026',
|
|
issuingBank: '中国建设银行南京城南支行',
|
|
phone: '025-66880002',
|
|
customerEmails: 'finance@huadong.example.com',
|
|
departmentEmails: 'logistics@huadong.example.com',
|
|
attachmentsJson: '[]',
|
|
kingdeeBillNo: 'KD-FP-20260826002',
|
|
},
|
|
{
|
|
id: 90000003,
|
|
invoiceNo: '25312000000000000103',
|
|
invoiceDate: '2026-08-27',
|
|
invoiceType: '增值税专用发票',
|
|
taxRate: 3,
|
|
invoiceAmount: 20600,
|
|
taxAmount: 600,
|
|
receiverName: '华东供应链管理有限公司',
|
|
issuerName: '浙江通达物流有限公司',
|
|
bankName: '招商银行杭州分行',
|
|
bankAccount: '5719000100000000033',
|
|
issuingBank: '招商银行杭州高新支行',
|
|
phone: '0571-66880003',
|
|
customerEmails: 'finance@huadong.example.com',
|
|
departmentEmails: 'settlement@huadong.example.com',
|
|
attachmentsJson: '[]',
|
|
kingdeeBillNo: 'KD-FP-20260827003',
|
|
},
|
|
];
|
|
|
|
const randomDigits = length =>
|
|
Array.from({ length }, () => Math.floor(Math.random() * 10)).join('');
|
|
|
|
const formatMockDate = date => {
|
|
const year = date.getFullYear();
|
|
const month = String(date.getMonth() + 1).padStart(2, '0');
|
|
const day = String(date.getDate()).padStart(2, '0');
|
|
return `${year}-${month}-${day}`;
|
|
};
|
|
|
|
const createInvoicePoolMockRows = () =>
|
|
invoicePoolMockTemplates.map((template, index) => {
|
|
const invoiceDateValue = new Date();
|
|
invoiceDateValue.setDate(invoiceDateValue.getDate() - Math.floor(Math.random() * 15));
|
|
const invoiceDate = formatMockDate(invoiceDateValue);
|
|
const invoiceAmount = Math.floor(10000 + Math.random() * 190000);
|
|
const taxAmount = Number(
|
|
(
|
|
(invoiceAmount * Number(template.taxRate || 0)) /
|
|
(100 + Number(template.taxRate || 0))
|
|
).toFixed(2)
|
|
);
|
|
return {
|
|
...template,
|
|
id: Date.now() + index * 100 + Math.floor(Math.random() * 100),
|
|
invoiceNo: `25${randomDigits(18)}`,
|
|
invoiceDate,
|
|
invoiceAmount,
|
|
taxAmount,
|
|
kingdeeBillNo: `KD-FP-${invoiceDate.replaceAll('-', '')}${randomDigits(3)}`,
|
|
};
|
|
});
|
|
|
|
const emptyForm = () => ({
|
|
id: null,
|
|
kingdeeInvoicePoolId: null,
|
|
invoiceNo: '',
|
|
invoiceDate: '',
|
|
invoiceType: '',
|
|
taxRate: null,
|
|
invoiceAmount: null,
|
|
taxAmount: null,
|
|
receiverName: '',
|
|
issuerName: '',
|
|
bankName: '',
|
|
bankAccount: '',
|
|
issuingBank: '',
|
|
kingdeeBillNo: '',
|
|
kingdeeStatus: 'unsynced',
|
|
phone: '',
|
|
customerEmails: [],
|
|
departmentEmails: [],
|
|
projectName: '',
|
|
deptName: '',
|
|
payerName: '',
|
|
payeeName: '',
|
|
settlements: [],
|
|
attachments: [],
|
|
remark: '',
|
|
});
|
|
|
|
export default {
|
|
name: 'InvoiceReceiptForm',
|
|
components: {
|
|
VehicleAttachmentTable,
|
|
},
|
|
data() {
|
|
return {
|
|
Search,
|
|
form: emptyForm(),
|
|
invoicePoolMockRows: [],
|
|
customerEmailOptions: [],
|
|
departmentEmailOptions: [],
|
|
invoiceDialog: { visible: false, loading: false, keyword: '', rows: [], current: null },
|
|
settlementDialog: {
|
|
visible: false,
|
|
loading: false,
|
|
keyword: '',
|
|
rows: [],
|
|
selection: [],
|
|
},
|
|
rules: {
|
|
invoiceNo: [{ required: true, validator: this.validateInvoice, trigger: 'change' }],
|
|
settlementIds: [{ required: true, validator: this.validateSettlements, trigger: 'change' }],
|
|
customerEmails: [{ validator: this.validateEmails, trigger: 'change' }],
|
|
departmentEmails: [{ validator: this.validateEmails, trigger: 'change' }],
|
|
},
|
|
};
|
|
},
|
|
computed: {
|
|
...mapGetters(['permission']),
|
|
recordId() {
|
|
return this.$route.query.id || '';
|
|
},
|
|
readonly() {
|
|
return this.$route.query.mode === 'view';
|
|
},
|
|
canSave() {
|
|
const code = this.recordId ? 'invoice_receipt_edit' : 'invoice_receipt_add';
|
|
return this.hasPermission(code);
|
|
},
|
|
settlementLabel() {
|
|
return this.form.settlements
|
|
.map(item => item.formalSettlementNo)
|
|
.filter(Boolean)
|
|
.join(',');
|
|
},
|
|
settlementIds() {
|
|
return this.form.settlements.map(item => item.formalSettlementId || item.settlementId);
|
|
},
|
|
},
|
|
created() {
|
|
this.initialize();
|
|
},
|
|
methods: {
|
|
hasPermission(code) {
|
|
return this.permission?.[code] !== false;
|
|
},
|
|
unwrapData(response) {
|
|
const body = response?.data || response || {};
|
|
return body?.data || body;
|
|
},
|
|
parse(value) {
|
|
if (!value) return [];
|
|
if (Array.isArray(value)) return value;
|
|
try {
|
|
return JSON.parse(value) || [];
|
|
} catch {
|
|
return [];
|
|
}
|
|
},
|
|
parseEmails(value) {
|
|
return String(value || '')
|
|
.split(/[;,,;]/)
|
|
.map(item => item.trim())
|
|
.filter(Boolean);
|
|
},
|
|
async initialize() {
|
|
this.invoicePoolMockRows = createInvoicePoolMockRows();
|
|
const userInfo = this.$store.getters.userInfo || {};
|
|
const userEmail = userInfo.email || '';
|
|
this.departmentEmailOptions = userEmail ? [userEmail] : [];
|
|
if (!this.recordId) {
|
|
if (userEmail) this.form.departmentEmails = [userEmail];
|
|
return;
|
|
}
|
|
const data = this.unwrapData(await api.getDetail(this.recordId));
|
|
this.form = {
|
|
...emptyForm(),
|
|
...data,
|
|
customerEmails: this.parseEmails(data.customerEmails),
|
|
departmentEmails: this.parseEmails(data.departmentEmails),
|
|
settlements: (data.settlements || []).map(item => ({
|
|
...item,
|
|
settlementId: item.formalSettlementId,
|
|
})),
|
|
attachments: this.parse(data.attachmentsJson),
|
|
};
|
|
if (this.settlementIds.length) await this.loadReferenceInformation();
|
|
},
|
|
validateInvoice(rule, value, callback) {
|
|
if (!value || !this.form.kingdeeInvoicePoolId) {
|
|
callback(new Error('请选择金蝶票据池发票'));
|
|
return;
|
|
}
|
|
callback();
|
|
},
|
|
validateSettlements(rule, value, callback) {
|
|
if (!this.form.settlements.length) {
|
|
callback(new Error('请选择应付正式结算单'));
|
|
return;
|
|
}
|
|
callback();
|
|
},
|
|
validateEmails(rule, value, callback) {
|
|
const emails = Array.isArray(value) ? value : this.parseEmails(value);
|
|
const valid = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
|
|
if (emails.length > 3) {
|
|
callback(new Error('最多填写3个邮箱'));
|
|
return;
|
|
}
|
|
if (emails.some(email => !valid.test(email))) {
|
|
callback(new Error('请输入正确的邮箱'));
|
|
return;
|
|
}
|
|
callback();
|
|
},
|
|
async openInvoiceDialog() {
|
|
this.invoiceDialog.visible = true;
|
|
this.invoiceDialog.keyword = this.form.invoiceNo || '';
|
|
if (!this.recordId) this.invoicePoolMockRows = createInvoicePoolMockRows();
|
|
await this.loadInvoicePool();
|
|
},
|
|
async loadInvoicePool() {
|
|
this.invoiceDialog.loading = true;
|
|
try {
|
|
if (!this.recordId) {
|
|
this.invoiceDialog.rows = this.filterInvoicePoolMockRows(this.invoiceDialog.keyword);
|
|
return;
|
|
}
|
|
const data = this.unwrapData(await api.getInvoicePool(this.invoiceDialog.keyword));
|
|
this.invoiceDialog.rows = Array.isArray(data) ? data : data?.records || [];
|
|
} finally {
|
|
this.invoiceDialog.loading = false;
|
|
}
|
|
},
|
|
filterInvoicePoolMockRows(keyword) {
|
|
const normalizedKeyword = String(keyword || '')
|
|
.trim()
|
|
.toLowerCase();
|
|
if (!normalizedKeyword) return this.invoicePoolMockRows.map(item => ({ ...item }));
|
|
return this.invoicePoolMockRows
|
|
.filter(item =>
|
|
[item.invoiceNo, item.issuerName, item.receiverName].some(value =>
|
|
String(value || '')
|
|
.toLowerCase()
|
|
.includes(normalizedKeyword)
|
|
)
|
|
)
|
|
.map(item => ({ ...item }));
|
|
},
|
|
confirmInvoice(row, options = {}) {
|
|
const selected = row?.id ? row : this.invoiceDialog.current;
|
|
if (!selected) {
|
|
this.$message.warning('请选择一张金蝶票据池发票');
|
|
return;
|
|
}
|
|
const preserveUserInput = options.preserveUserInput === true;
|
|
Object.assign(this.form, {
|
|
kingdeeInvoicePoolId: selected.id,
|
|
invoiceNo: selected.invoiceNo,
|
|
invoiceDate: selected.invoiceDate,
|
|
invoiceType: selected.invoiceType,
|
|
taxRate: selected.taxRate,
|
|
invoiceAmount: selected.invoiceAmount,
|
|
taxAmount: selected.taxAmount,
|
|
receiverName: selected.receiverName,
|
|
issuerName: selected.issuerName,
|
|
bankName: selected.bankName,
|
|
bankAccount: selected.bankAccount,
|
|
issuingBank: selected.issuingBank,
|
|
kingdeeBillNo: selected.kingdeeBillNo || '',
|
|
kingdeeStatus: selected.kingdeeStatus || 'unsynced',
|
|
phone: preserveUserInput ? this.form.phone : selected.phone || '',
|
|
customerEmails: preserveUserInput
|
|
? this.form.customerEmails
|
|
: this.parseEmails(selected.customerEmails),
|
|
departmentEmails: preserveUserInput
|
|
? this.form.departmentEmails
|
|
: this.parseEmails(selected.departmentEmails),
|
|
attachments: preserveUserInput
|
|
? this.form.attachments
|
|
: this.parse(selected.attachmentsJson),
|
|
});
|
|
this.customerEmailOptions = [...this.form.customerEmails];
|
|
this.departmentEmailOptions = [
|
|
...new Set([...this.departmentEmailOptions, ...this.form.departmentEmails]),
|
|
];
|
|
this.invoiceDialog.visible = false;
|
|
this.$refs.formRef?.validateField('invoiceNo').catch(() => {});
|
|
return true;
|
|
},
|
|
async openSettlementDialog() {
|
|
this.settlementDialog.visible = true;
|
|
await this.loadSettlementCandidates();
|
|
},
|
|
async loadSettlementCandidates() {
|
|
this.settlementDialog.loading = true;
|
|
try {
|
|
this.settlementDialog.rows =
|
|
this.unwrapData(
|
|
await api.getSettlementCandidates(this.settlementDialog.keyword, this.form.id)
|
|
) || [];
|
|
} finally {
|
|
this.settlementDialog.loading = false;
|
|
}
|
|
},
|
|
async confirmSettlements() {
|
|
const rows = this.settlementDialog.selection;
|
|
if (!rows.length) {
|
|
this.$message.warning('请至少选择一张应付正式结算单');
|
|
return;
|
|
}
|
|
const first = rows[0];
|
|
const incompatible = rows.some(
|
|
item =>
|
|
String(item.projectId) !== String(first.projectId) ||
|
|
String(item.deptId) !== String(first.deptId) ||
|
|
item.payerName !== first.payerName ||
|
|
item.payeeName !== first.payeeName
|
|
);
|
|
if (incompatible) {
|
|
this.$message.warning('关联结算单必须属于同一项目、组织及收付款方');
|
|
return;
|
|
}
|
|
this.form.settlements = rows.map(item => ({
|
|
...item,
|
|
formalSettlementId: item.id,
|
|
settlementId: item.id,
|
|
allocatedInvoiceAmount: 0,
|
|
}));
|
|
this.form.projectName = first.projectName;
|
|
this.form.deptName = first.deptName;
|
|
this.form.payerName = first.payerName;
|
|
this.form.payeeName = first.payeeName;
|
|
this.settlementDialog.visible = false;
|
|
await this.loadReferenceInformation();
|
|
this.$refs.formRef?.validateField('settlementIds').catch(() => {});
|
|
},
|
|
async selectSettlement(row) {
|
|
this.settlementDialog.selection = [row];
|
|
await this.confirmSettlements();
|
|
},
|
|
async loadReferenceInformation() {
|
|
const data = this.unwrapData(await api.getReferenceInformation(this.settlementIds.join(',')));
|
|
this.customerEmailOptions = data.customerEmails || [];
|
|
this.departmentEmailOptions = [
|
|
...new Set([...this.departmentEmailOptions, ...(data.departmentEmails || [])]),
|
|
];
|
|
if (!this.form.customerEmails.length && this.customerEmailOptions.length) {
|
|
this.form.customerEmails = [this.customerEmailOptions[0]];
|
|
}
|
|
},
|
|
remainingAmount(row) {
|
|
return Math.max(
|
|
Number(row.settlementAmount || 0) - Number(row.receivedInvoiceAmount || 0),
|
|
0
|
|
);
|
|
},
|
|
openSettlementDetail(row) {
|
|
const id = row.formalSettlementId || row.settlementId || row.id;
|
|
if (!id) return;
|
|
this.$router.push({
|
|
path: '/settlement/formal-settlement/form',
|
|
query: { mode: 'view', id, name: '查看正式结算' },
|
|
});
|
|
},
|
|
validateBusiness() {
|
|
const invoiceAmount = Number(this.form.invoiceAmount || 0);
|
|
if (invoiceAmount <= 0) throw new Error('开票金额必须大于0');
|
|
for (const row of this.form.settlements) {
|
|
const allocated = Number(row.allocatedInvoiceAmount);
|
|
if (!Number.isFinite(allocated) || allocated < 0) {
|
|
throw new Error('分摊发票金额必须大于或等于0');
|
|
}
|
|
if (allocated - this.remainingAmount(row) > 0.001) {
|
|
throw new Error(`结算单${row.formalSettlementNo}的累计收票金额不能超过结算总金额`);
|
|
}
|
|
}
|
|
},
|
|
payload() {
|
|
return {
|
|
id: this.form.id,
|
|
kingdeeInvoicePoolId: this.form.kingdeeInvoicePoolId,
|
|
invoiceNo: this.form.invoiceNo,
|
|
invoiceDate: this.form.invoiceDate,
|
|
invoiceType: this.form.invoiceType,
|
|
taxRate: this.form.taxRate,
|
|
invoiceAmount: this.form.invoiceAmount,
|
|
taxAmount: this.form.taxAmount,
|
|
receiverName: this.form.receiverName,
|
|
issuerName: this.form.issuerName,
|
|
bankName: this.form.bankName,
|
|
bankAccount: this.form.bankAccount,
|
|
issuingBank: this.form.issuingBank,
|
|
kingdeeBillNo: this.form.kingdeeBillNo,
|
|
kingdeeStatus: this.form.kingdeeStatus,
|
|
phone: this.form.phone,
|
|
customerEmails: this.form.customerEmails.join(';'),
|
|
departmentEmails: this.form.departmentEmails.join(';'),
|
|
attachmentsJson: JSON.stringify(this.form.attachments || []),
|
|
remark: this.form.remark,
|
|
settlements: this.form.settlements.map(item => ({
|
|
settlementId: item.formalSettlementId || item.settlementId,
|
|
allocatedInvoiceAmount: item.allocatedInvoiceAmount,
|
|
})),
|
|
};
|
|
},
|
|
async saveDraft() {
|
|
await this.$refs.formRef.validate();
|
|
try {
|
|
this.validateBusiness();
|
|
} catch (error) {
|
|
this.$message.warning(error.message);
|
|
return false;
|
|
}
|
|
const id = this.unwrapData(await api.save(this.payload()));
|
|
this.form.id = id;
|
|
this.$message.success('保存成功');
|
|
return true;
|
|
},
|
|
async submitForm() {
|
|
const saved = await this.saveDraft();
|
|
if (!saved) return;
|
|
await api.submit({ id: this.form.id });
|
|
this.$message.success('提交成功');
|
|
this.goBack();
|
|
},
|
|
async syncReferenceData() {
|
|
if (!this.form.invoiceNo) {
|
|
this.$message.warning('请先选择金蝶票据池发票');
|
|
return;
|
|
}
|
|
const data = this.recordId
|
|
? this.unwrapData(await api.getInvoicePool(this.form.invoiceNo))
|
|
: this.filterInvoicePoolMockRows(this.form.invoiceNo);
|
|
const rows = Array.isArray(data) ? data : data?.records || [];
|
|
const invoice = rows.find(item => item.invoiceNo === this.form.invoiceNo);
|
|
if (!invoice) {
|
|
this.$message.warning('金蝶票据池中未查询到该发票');
|
|
return;
|
|
}
|
|
if (!this.confirmInvoice(invoice, { preserveUserInput: true })) return;
|
|
if (this.settlementIds.length) await this.loadReferenceInformation();
|
|
this.$message.success('同步成功');
|
|
},
|
|
goBack() {
|
|
this.$router.push('/payment/invoice-receipt');
|
|
},
|
|
formatMoney(value) {
|
|
return Number(value || 0).toFixed(2);
|
|
},
|
|
formatRate(value) {
|
|
return value === null || value === undefined || value === '' ? '' : `${Number(value)}%`;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.receipt-form-page__form {
|
|
padding-bottom: 72px;
|
|
}
|
|
.receipt-form-page__form :deep(.el-form-item) {
|
|
margin-bottom: 14px;
|
|
}
|
|
.receipt-form-page__form :deep(.el-select),
|
|
.receipt-form-page__form :deep(.el-input-number) {
|
|
width: 100%;
|
|
}
|
|
.receipt-form-page__remark :deep(.el-form-item__content) {
|
|
margin-left: 0 !important;
|
|
}
|
|
.receipt-form-page__actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: 12px 24px;
|
|
position: fixed;
|
|
right: 0;
|
|
left: 230px;
|
|
bottom: 0;
|
|
margin: 0;
|
|
z-index: 10;
|
|
background: #fff;
|
|
border-top: 1px solid #eff1f7;
|
|
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
|
|
}
|
|
:global(.avue--collapse .receipt-form-page__actions) {
|
|
left: 60px;
|
|
}
|
|
:global(.avue-layout--horizontal .receipt-form-page__actions) {
|
|
left: 0;
|
|
}
|
|
.receipt-form-page__dialog-search {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.receipt-form-page__dialog-search .el-input {
|
|
width: 360px;
|
|
}
|
|
.receipt-form-page :deep(.el-table) {
|
|
--el-table-border-color: #eff1f7;
|
|
}
|
|
.receipt-form-page :deep(.el-table__row:nth-child(even) > td.el-table__cell) {
|
|
background: #fafafa;
|
|
}
|
|
@media (max-width: 900px) {
|
|
.receipt-form-page__form :deep(.el-col-6) {
|
|
max-width: 100%;
|
|
flex: 0 0 100%;
|
|
}
|
|
}
|
|
</style>
|