Files
robot-shop/web/static/cart.html
Steve Waterworth 8ff6f72cce tidy up
2018-02-02 09:50:17 +00:00

42 lines
1.3 KiB
HTML

<!-- shopping cart -->
<div>
Shopping cart for {{ data.uniqueid }}
<div ng-if="data.cart.total == 0">
Your cart is empty, get shopping
</div>
<div ng-if="data.cart.total != 0">
<table>
<tr>
<th>QTY</th>
<th>Name</th>
<th>Sub Total</th>
</tr>
<tr ng-repeat="item in data.cart.items">
<td>
<input type="number" size="2" min="0" max="10" ng-model="item.qty" ng-change="change(item.sku, item.qty);"/>
</td>
<td>{{ item.name }}</td>
<td class="currency">&euro;{{ item.subtotal.toFixed(2) }}</td>
</tr>
<tr>
<td colspan="3">&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>Inc Tax</td>
<td class="currency">&euro;{{ data.cart.tax.toFixed(2) }}</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>Total</td>
<td class="currency">&euro;{{ data.cart.total.toFixed(2) }}</td>
</tr>
<tr>
<td colspan="3">
<button ng-click="buy();">Checkout</button>
</td>
</tr>
</table>
</div>
</div>