Product Sale Module done (Sales Detail) -- need to rename the permission

This commit is contained in:
Amritanshu
2019-08-21 09:27:19 +05:30
parent 241568622e
commit 0f00d96dc9
19 changed files with 528 additions and 0 deletions

View File

@ -0,0 +1,14 @@
export class ProductSaleReportItem {
name: string;
kot: number;
regularBill: number;
noCharge: number;
staf: number;
void: number;
}
export class ProductSaleReport {
startDate: string;
finishDate: string;
amounts?: ProductSaleReportItem[];
}