Files
barker/bookie/src/app/tax-report/tax-report.ts
Amritanshu 6d0f30503a Renamed Report permissions to make more sense
Removed the void and reprints report and added it to the bill settlement report
updated the import to add a new sql to be executed later to update the settlements and report permission names
Export works on all reports
2019-08-25 15:08:59 +05:30

13 lines
206 B
TypeScript

export class TaxReportItem {
name: string;
taxRate: number;
saleAmount: number;
amount: number;
}
export class TaxReport {
startDate: string;
finishDate: string;
amounts?: TaxReportItem[];
}