@if (billResource.isLoading()) {
} @else if (billResource.error()) {
} @else {
Bill
Bill / KOT number
{{ bs.bill().billId }} / K-{{ bs.bill().kotId }}
Time / Start Time / Last Edit Time
{{ bs.bill().date }} / {{ bs.bill().creationDate }} / {{
bs.bill().lastEditDate
}}
Table / Pax / Customer
/
/
@if (row.id) {
}
{{ row.id ? `Kot: ${row.kot.code} / ${row.kot.date} (${row.kot.user.name})` : '== New Kot ==' }}
{{ `${row.inv.sku.name} @ ${row.inv.price} - ${discountPct(row.inv)}%` }}
@for (m of row.inv.modifiers; track m.id) {
- {{ m.name }}
}
{{ `${row.inv.sku.name} @ ${row.inv.price} - ${discountPct(row.inv)}%` }}
@for (m of row.inv.modifiers; track m.id) {
- {{ m.name }}
}
Quantity
Quantity
Quantity
Gross
{{
bs.grossAmount() | currency: 'INR'
}}
Happy Hour Discount
{{
bs.hhAmount() | currency: 'INR'
}}
Discount
{{
bs.discountAmount() | currency: 'INR'
}}
Tax
{{
bs.taxAmount() | currency: 'INR'
}}
Amount
{{ bs.amount() | currency: 'INR' }}
}