Files
tsclass/ts/finance/expense.ts
2020-01-19 10:19:38 +00:00

18 lines
330 B
TypeScript

import { business } from '../';
export interface IExpenseItem {
description: string;
asset?: boolean;
accountingType?: any;
amount: number;
taxPercentage: number;
}
export interface IVoucher {
voucherFile?: any;
date: Date;
description: string;
expenseItems: IExpenseItem[];
contactRef: business.IContact;
}