@for (row of ['A', 'B', 'C', 'D', 'E', 'F']; track row) {
Row {{ row }}
Scroll
@for (col of [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; track col) {
{{ row + col }}
@if (getSlot(row, col)?.product_id) {

{{ getSlot(row, col)?.product_name }}

{{ getSlot(row, col)?.price }} ₹

{{ selectedQuantities[row + col] || 1 }}
} @else {

No Product Assigned

}
}
}

Shopping Cart

@if (cart.length === 0) {

Your cart is empty

} @else { @for (item of cart; track item; let i = $index) {

{{ item.productName }}

{{ item.quantity }}

₹{{ item.price.toFixed(2) }} × {{ item.quantity }} = ₹{{ item.totalPrice.toFixed(2) }}

} }

Confirm Payment

Order Summary

@for (item of paymentDialogData?.cart; track item) {
{{ item.productName }} Qty: {{ item.quantity }}
₹{{ item.totalPrice.toFixed(2) }}
}
Total Amount: ₹{{ formattedTotalAmount }}
{{ error }}

Loading...