salix/modules/entry/front/descriptor/index.html

34 lines
1.2 KiB
HTML
Raw Normal View History

2020-01-10 10:52:35 +00:00
<div class="vn-descriptor">
<div class="header">
<a translate-attr="{title: 'Return to module index'}" ui-sref="entry.index">
<vn-icon icon="chevron_left"></vn-icon>
</a>
<a translate-attr="{title: 'Preview'}" ui-sref="entry.card.summary({id: $ctrl.entry.id})">
<vn-icon icon="desktop_windows"></vn-icon>
</a>
<span></span>
</div>
<div class="body">
<div class="attributes">
<vn-label-value label="Id"
value="{{$ctrl.entry.id}}">
</vn-label-value>
2020-02-21 11:48:34 +00:00
<vn-label-value label="Supplier"
value="{{$ctrl.entry.supplier.nickname}}">
2020-01-10 10:52:35 +00:00
</vn-label-value>
2020-02-21 11:48:34 +00:00
<vn-label-value label="Agency "
value="{{$ctrl.entry.travel.agency.name}}">
</vn-label-value>
<vn-label-value label="Landed"
value="{{$ctrl.entry.travel.landed | date: 'dd/MM/yyyy'}}">
</vn-label-value>
<vn-label-value label="Warehouse Out"
value="{{$ctrl.entry.travel.warehouseOut.name}}">
</vn-label-value>
2020-01-10 10:52:35 +00:00
</div>
2020-02-21 11:48:34 +00:00
<vn-quick-links
links="$ctrl.quicklinks">
</vn-quick-links>
2020-01-10 10:52:35 +00:00
</div>
</div>