Files
barker/bookie/src/app/product-sale-report/product-sale-report-item.ts
T
tanshu 1a08066c2d Feature: Cancelled bills are now separate from void bills.
Void bills are automatically generated when printed bills are changed.
Manually cancelled bills are called cancelled bills.
2023-03-17 08:27:30 +05:30

19 lines
374 B
TypeScript

export class ProductSaleReportItem {
name: string;
kot: number;
regularBill: number;
noCharge: number;
staff: number;
cancel: number;
public constructor(init?: Partial<ProductSaleReportItem>) {
this.name = '';
this.kot = 0;
this.regularBill = 0;
this.noCharge = 0;
this.staff = 0;
this.cancel = 0;
Object.assign(this, init);
}
}