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
13 lines
206 B
TypeScript
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[];
|
|
}
|