Files
tsclass/ts/finance/expense.ts
2019-07-08 14:04:11 +02:00

19 lines
375 B
TypeScript

import { IInvoice } from './invoice';
import { IContact } from '../business/contact';
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: IContact;
}