brewman/overlord/src/app/purchase-entries/purchase-entries.ts

19 lines
320 B
TypeScript
Raw Normal View History

export class PurchaseEntriesItem {
2020-05-14 09:09:19 +00:00
id: string;
date: string;
supplier: string;
2020-05-14 09:09:19 +00:00
url: string[];
product: string;
quantity: number;
rate: number;
tax: number;
discount: number;
amount: number;
}
export class PurchaseEntries {
startDate: string;
finishDate: string;
body: PurchaseEntriesItem[];
}