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

63 lines
2.2 KiB
HTML
Raw Normal View History

<vn-descriptor-content module="entry">
<slot-menu>
<ul class="vn-list">
<li>
<div class="vn-item"
ng-click="$ctrl.showEntryReport()"
translate>
Show entry report
</div>
</li>
</ul>
</slot-menu>
<slot-body>
2020-01-10 10:52:35 +00:00
<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-03-11 07:02:58 +00:00
<div class="icons">
<vn-icon
vn-tooltip="Is inventory entry"
icon="icon-inventory"
ng-class="{bright: $ctrl.entry.isInventory}">
</vn-icon>
<vn-icon
vn-tooltip="Is virtual entry"
icon="icon-net"
ng-class="{bright: $ctrl.entry.isRaid}">
</vn-icon>
</div>
<div class="quicklinks">
<div ng-transclude="btnOne">
<vn-quick-link
tooltip="All travels with current agency"
state="['travel.index', {q: $ctrl.travelFilter}]"
icon="local_airport">
</vn-quick-link>
</div>
<div ng-transclude="btnTwo">
<vn-quick-link
tooltip="All entries with current supplier"
state="['entry.index', {q: $ctrl.entryFilter}]"
icon="icon-entry">
</vn-quick-link>
</div>
<div ng-transclude="btnThree">
</div>
</div>
</slot-body>
</vn-descriptor-content>