2019-10-28 16:31:33 +00:00
|
|
|
<vn-crud-model
|
|
|
|
auto-load="true"
|
2018-07-18 13:01:37 +00:00
|
|
|
vn-id="model"
|
2019-10-24 22:53:53 +00:00
|
|
|
url="OrderRows"
|
2018-07-18 13:01:37 +00:00
|
|
|
filter="::$ctrl.filter"
|
2020-03-17 14:18:02 +00:00
|
|
|
link="{orderFk: $ctrl.$params.id}"
|
2018-07-18 13:01:37 +00:00
|
|
|
limit="20"
|
2019-10-28 16:31:33 +00:00
|
|
|
data="rows"
|
|
|
|
on-data-change="$ctrl.onDataChange()">
|
2018-07-18 13:01:37 +00:00
|
|
|
</vn-crud-model>
|
2020-03-17 14:18:02 +00:00
|
|
|
<mg-ajax path="Orders/{{$ctrl.$params.id}}/getTotalVolume" options="mgEdit"></mg-ajax>
|
2019-10-28 16:31:33 +00:00
|
|
|
<vn-data-viewer model="model" class="header vn-w-lg">
|
2019-10-04 22:16:57 +00:00
|
|
|
<vn-card class="vn-pa-lg">
|
2019-10-28 16:31:33 +00:00
|
|
|
<vn-label-value
|
|
|
|
label="Total"
|
|
|
|
value="{{::edit.model.totalVolume}} M³">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value
|
|
|
|
label="Cajas"
|
|
|
|
value="{{::edit.model.totalBoxes | dashIfEmpty}} U">
|
|
|
|
</vn-label-value>
|
2018-07-18 13:01:37 +00:00
|
|
|
</vn-card>
|
2019-10-28 16:31:33 +00:00
|
|
|
<vn-card class="vn-mt-md">
|
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
|
|
|
<vn-th field="itemFk" default-order="ASC" number>Item</vn-th>
|
|
|
|
<vn-th>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="row in rows">
|
|
|
|
<vn-td number>
|
|
|
|
<span
|
|
|
|
ng-click="$ctrl.showDescriptor($event, row.itemFk)"
|
|
|
|
class="link">
|
|
|
|
{{::row.itemFk}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td expand>
|
|
|
|
<vn-fetched-tags
|
|
|
|
max-length="6"
|
|
|
|
item="::row.item"
|
|
|
|
name="::row.item.name"
|
|
|
|
sub-name="::row.item.subName">
|
|
|
|
</vn-fetched-tags>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td number>{{::row.quantity}}</vn-td>
|
|
|
|
<vn-td number>{{::row.volume | number:3}}</vn-td>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
|
|
|
</vn-card>
|
|
|
|
</vn-data-viewer>
|
|
|
|
<vn-item-descriptor-popover
|
|
|
|
vn-id="descriptor">
|
|
|
|
</vn-item-descriptor-popover>
|
2018-07-18 13:01:37 +00:00
|
|
|
|