salix/client/ticket/src/data/step-two/step-two.html

30 lines
1.2 KiB
HTML
Raw Normal View History

<form name="form">
<vn-card pad-large>
<vn-title>Ticket configuration - Price difference</vn-title>
<vn-horizontal>
<table class="vn-grid">
<thead>
<tr>
<th number translate>Item</th>
<th translate style="text-align:center">Description</th>
<th number translate>Quantity</th>
<th number translate>Price</th>
<th number translate>New price</th>
<th number translate>Price gap</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="sale in $ctrl.ticket.sales track by sale.id">
<td number>{{("000000"+sale.itemFk).slice(-6)}}</td>
<td><vn-fetched-tags sale="sale"/></td>
<td number>{{::sale.quantity}}</td>
<td number>{{::sale.price | currency:'€':2}}</td>
<td number>-</td>
<td number>-</td>
</tr>
</tbody>
</table>
</vn-horizontal>
</vn-card>
</form>