20 lines
400 B
TypeScript
20 lines
400 B
TypeScript
import { IInvoice } from './invoice';
|
|
import { IContact } from '../business/contact';
|
|
|
|
export interface IExpenseItem {
|
|
description: string,
|
|
asset?: boolean,
|
|
accountingType?: string,
|
|
amount: number;
|
|
taxPercentage: number;
|
|
}
|
|
|
|
export interface IExpense {
|
|
voucherFile?: any;
|
|
date: Date;
|
|
description: string;
|
|
expenseItems: IExpenseItem[];
|
|
contactRef: IContact;
|
|
accountRef: string;
|
|
}
|