Spaces:
Runtime error
Runtime error
File size: 398 Bytes
6eeb165 2b10760 6eeb165 2b10760 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
export interface InvoiceDetailInterface {
id?: number;
invoice_id: number;
pw_portfolio_id?: number;
pw_building_id?: number;
pw_unit_id: number | null;
pw_gl_account_id: number | null;
amount: number;
description?: string;
}
export interface BillSplitDetails {
location: string;
expenseAccount: string;
description: string;
amount: number;
}
|