Beer consumption report can choose menu category for beer

This commit is contained in:
2026-02-14 05:29:11 +00:00
parent ecc92795e6
commit a1d6919d9d
12 changed files with 57 additions and 24 deletions
@@ -1,8 +1,10 @@
import { MenuCategory } from '../core/menu-category';
import { BeerSaleReportItem } from './beer-sale-report-item';
export class BeerSaleReport {
startDate: string;
finishDate: string;
menuCategory: MenuCategory;
regular: boolean;
happy: boolean;
staff: boolean;
@@ -13,6 +15,7 @@ export class BeerSaleReport {
public constructor(init?: Partial<BeerSaleReport>) {
this.startDate = '';
this.finishDate = '';
this.menuCategory = new MenuCategory();
this.regular = true;
this.happy = true;
this.staff = true;