62 lines
2.4 KiB
HTML
62 lines
2.4 KiB
HTML
<vn-crud-model auto-load="false"
|
|
vn-id="model"
|
|
url="/ticket/api/sales"
|
|
filter="::$ctrl.filter"
|
|
link="{ticketFk: $ctrl.$stateParams.id}"
|
|
limit="20"
|
|
data="sales" on-data-change="$ctrl.onDataChange()">
|
|
</vn-crud-model>
|
|
<mg-ajax path="/client/api/tickets/{{$ctrl.$stateParams.id}}/getTotalVolume" options="mgEdit"></mg-ajax>
|
|
<vn-vertical>
|
|
<vn-card pad-large>
|
|
<vn-horizontal>
|
|
<vn-title vn-two>Volume</vn-title>
|
|
<div class="totalBox">
|
|
<vn-label-value label="Total"
|
|
value="{{::edit.model.totalVolume}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Cajas"
|
|
value="{{::edit.model.totalBoxes}}">
|
|
</vn-label-value>
|
|
</div>
|
|
</vn-horizontal>
|
|
<vn-vertical>
|
|
<vn-table model="model">
|
|
<vn-thead>
|
|
<vn-tr>
|
|
<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-th number>m³ per quantity</vn-th>
|
|
</vn-tr>
|
|
</vn-thead>
|
|
<vn-tbody>
|
|
<vn-tr ng-repeat="sale in sales">
|
|
<vn-td number>
|
|
<span
|
|
ng-click="$ctrl.showDescriptor($event, sale.itemFk)"
|
|
class="link" pointer>
|
|
{{("000000"+sale.itemFk).slice(-6)}}
|
|
</span>
|
|
</vn-td>
|
|
<vn-td><vn-fetched-tags max-length="6" item="sale.item"/></vn-td>
|
|
<vn-td number>{{::sale.quantity}}</vn-td>
|
|
<vn-td number>{{::sale.volume.m3 | number:3}}</vn-td>
|
|
</vn-tr>
|
|
</vn-tbody>
|
|
<vn-empty-rows ng-if="model.data.length === 0" translate>
|
|
No results
|
|
</vn-empty-rows>
|
|
</vn-table>
|
|
</vn-vertical>
|
|
<vn-pagination
|
|
model="model"
|
|
scroll-selector="ui-view">
|
|
</vn-pagination>
|
|
</vn-card>
|
|
</vn-vertical>
|
|
<vn-item-descriptor-popover vn-id="descriptor"
|
|
quicklinks="$ctrl.quicklinks">
|
|
</vn-item-descriptor-popover>
|
|
|