2018-04-18 07:47:05 +00:00
|
|
|
<form name="form">
|
|
|
|
<vn-card pad-large>
|
2018-05-04 09:46:03 +00:00
|
|
|
<vn-title>Ticket configuration - Price difference</vn-title>
|
2018-04-18 07:47:05 +00:00
|
|
|
<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>
|