2018-07-17 06:44:31 +00:00
|
|
|
<vn-crud-model
|
|
|
|
vn-id="model"
|
|
|
|
url="/ticket/api/sales"
|
|
|
|
filter="::$ctrl.filter"
|
|
|
|
link="{ticketFk: $ctrl.$stateParams.id}"
|
|
|
|
limit="20"
|
|
|
|
data="sales">
|
|
|
|
</vn-crud-model>
|
2018-03-26 13:10:51 +00:00
|
|
|
<vn-vertical>
|
|
|
|
<vn-card pad-large>
|
2018-05-07 06:33:45 +00:00
|
|
|
<vn-vertical>
|
|
|
|
<vn-title>Sale checked</vn-title>
|
2018-07-17 06:44:31 +00:00
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th field="isChecked" center>Is checked</vn-th>
|
|
|
|
<vn-th field="itemFk" number>Item</vn-th>
|
|
|
|
<vn-th field="concept" default-order="ASC">Description</vn-th>
|
|
|
|
<vn-th field="quantity" number>Quantity</vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="sale in sales">
|
|
|
|
<vn-td center>
|
|
|
|
<vn-check
|
|
|
|
vn-one field="sale.isChecked.isChecked"
|
|
|
|
disabled="true">
|
|
|
|
</vn-check>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td number pointer
|
2018-07-19 09:32:33 +00:00
|
|
|
ng-click="$ctrl.showDescriptor($event, sale.itemFk)"
|
|
|
|
class="link">
|
|
|
|
{{("000000"+sale.itemFk).slice(-6)}}
|
2018-07-17 06:44:31 +00:00
|
|
|
</vn-td>
|
2018-07-19 08:44:57 +00:00
|
|
|
<vn-td><vn-fetched-tags concept="sale.concept" tags="sale.item.tags"/></vn-td>
|
2018-07-17 06:44:31 +00:00
|
|
|
<vn-td number>{{::sale.quantity}}</vn-td>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
<vn-empty-rows ng-if="model.data.length === 0" translate>
|
|
|
|
No results
|
|
|
|
</vn-empty-rows>
|
|
|
|
</vn-table>
|
2018-05-07 06:33:45 +00:00
|
|
|
</vn-vertical>
|
2018-07-17 06:44:31 +00:00
|
|
|
<vn-pagination
|
|
|
|
model="model"
|
|
|
|
scroll-selector="ui-view">
|
|
|
|
</vn-pagination>
|
2018-03-26 13:10:51 +00:00
|
|
|
</vn-card>
|
2018-07-17 06:44:31 +00:00
|
|
|
</vn-vertical>
|
2018-05-29 12:33:29 +00:00
|
|
|
<vn-item-descriptor-popover vn-id="descriptor"></vn-item-descriptor-popover>
|