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:
@ -67,3 +67,11 @@ table {
|
||||
background-color: #b39ddb;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.yellow300 {
|
||||
background-color: #fff176;
|
||||
}
|
||||
|
||||
.yellow-for-hh-printed {
|
||||
background-color: #f7ca18;
|
||||
}
|
||||
|
||||
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user