Back to table / product group order changed to have the back button in the beginning

The bill now highlights the happy hour products.
This commit is contained in:
2020-12-18 13:24:50 +05:30
parent f28cf1eea0
commit b70b01b726
4 changed files with 29 additions and 19 deletions

View File

@ -67,3 +67,11 @@ table {
background-color: #b39ddb;
color: #000000;
}
.yellow300 {
background-color: #fff176;
}
.yellow-for-hh-printed {
background-color: #f7ca18;
}

View File

@ -173,7 +173,9 @@
*matRowDef="let row; columns: displayedColumns"
[class.blue400]="row.isOldKot"
[class.blue800]="row.isNewKot"
[class.red100]="row.isPrinted"
[class.red100]="row.isPrinted && !row.isHappyHour"
[class.yellow300]="row.isHappyHour && !row.isPrinted"
[class.yellow-for-hh-printed]="row.isPrinted && row.isHappyHour"
></mat-row>
<mat-footer-row *matFooterRowDef="['net-title', 'net-amount']"></mat-footer-row>
<mat-footer-row *matFooterRowDef="['discount-title', 'discount-amount']"></mat-footer-row>