| | |
| | | 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'; |
| | | |
| | |
| | | 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; // 财务人员 |