2026-08-10 f9e6eb6fc2c2e0c2a2b17238b817fcbfcb6bab56
src/api/erp/finance/payment/index.ts
@@ -1,4 +1,6 @@
import type { PageParam, PageResult } from '..\..\..\..\packages\effects\request\src';
import type { PageParam, PageResult } from '@vben/request';
import type { ErpPurchaseInvoiceApi } from '#/api/erp/purchase/invoice';
import { requestClient } from '#/api/request';
@@ -9,13 +11,15 @@
    no: string; // 付款单号
    supplierId?: number; // 供应商编号
    supplierName?: string; // 供应商名称
    invoiceId?: number; // 关联来票编号
    invoice?: ErpPurchaseInvoiceApi.PurchaseInvoice; // 关联来票信息
    paymentTime?: Date; // 付款时间
    totalPrice: number; // 合计金额,单位:元
    discountPrice: number; // 优惠金额
    paymentPrice: number; // 实际付款金额
    status: number; // 状态
    remark: string; // 备注
    fileUrl?: string; // 附件
    attachmentList?: { id: number; name?: string; url?: string }[]; // 附件列表
    accountId?: number; // 付款账户
    accountName?: string; // 账户名称
    financeUserId?: number; // 财务人员