Files
tsclass/ts/finance/expense.ts

16 lines
307 B
TypeScript
Raw Normal View History

2018-07-10 23:59:07 +02:00
import { IInvoice } from './invoice';
2018-07-11 21:42:04 +02:00
import { IContact } from '../business/contact';
export interface IExpenseItem {
amount: number;
taxPercentage: number;
}
2018-07-10 23:59:07 +02:00
export interface IExpense {
2018-07-11 21:42:04 +02:00
voucherFile?: any
expenseItems: IExpenseItem[];
pdfFile: any;
contactRef: string;
accountRef: string;
2018-07-10 23:59:07 +02:00
}