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
22 lines
391 B
TypeScript
22 lines
391 B
TypeScript
import { User } from '../core/user';
|
|
|
|
export class CashierReportPrintItem {
|
|
date: string;
|
|
billId: string;
|
|
customer: string;
|
|
amount: number;
|
|
}
|
|
|
|
export class CashierReportDisplayItem {
|
|
name: string;
|
|
amount: number;
|
|
}
|
|
|
|
export class CashierReport {
|
|
startDate: string;
|
|
finishDate: string;
|
|
user: User;
|
|
amounts?: CashierReportDisplayItem[];
|
|
info?: CashierReportPrintItem[];
|
|
}
|