69 lines
2.9 KiB
HTML
69 lines
2.9 KiB
HTML
<div class="vn-descriptor">
|
|
<div class="header">
|
|
<a translate-attr="{title: 'Return to module index'}" ui-sref="order.index">
|
|
<vn-icon icon="chevron_left"></vn-icon>
|
|
</a>
|
|
<a translate-attr="{title: 'Preview'}" ui-sref="order.card.summary">
|
|
<vn-icon icon="desktop_windows"></vn-icon>
|
|
</a>
|
|
<div></div>
|
|
</div>
|
|
<div class="body">
|
|
<div class="attributes">
|
|
<vn-label-value label="ID"
|
|
value="{{$ctrl.order.id}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Client"
|
|
value="{{$ctrl.order.client.name}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="State"
|
|
value="{{$ctrl.order.isConfirmed ? $ctrl.translate.instant('Confirmed') : $ctrl.translate.instant('Not confirmed')}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Sales person"
|
|
value="{{$ctrl.order.client.salesPerson.user.nickname}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Landed"
|
|
value="{{$ctrl.order.landed | dateTime: 'dd/MM/yyyy' }}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Agency"
|
|
value="{{$ctrl.order.agencyMode.name}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Alias"
|
|
value="{{$ctrl.order.address.nickname}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Items"
|
|
value="{{$ctrl.order.rows.length || 0}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Total"
|
|
value="{{$ctrl.order.total | currency: 'EUR': 2}}">
|
|
</vn-label-value>
|
|
</div>
|
|
<div class="quicklinks">
|
|
<a ng-if="$ctrl.quicklinks.btnOne"
|
|
vn-tooltip="{{::$ctrl.quicklinks.btnOne.tooltip}}"
|
|
ui-sref="{{::$ctrl.quicklinks.btnOne.state}}" target="_blank">
|
|
<vn-icon
|
|
class="mdl-button mdl-js-button mdl-button--colored"
|
|
icon="{{::$ctrl.quicklinks.btnOne.icon}}">
|
|
</vn-icon>
|
|
</a>
|
|
<a ng-if="$ctrl.quicklinks.btnTwo"
|
|
vn-tooltip="{{::$ctrl.quicklinks.btnTwo.tooltip}}"
|
|
ui-sref="{{::$ctrl.quicklinks.btnTwo.state}}" target="_blank">
|
|
<vn-icon
|
|
class="mdl-button mdl-js-button mdl-button--colored"
|
|
icon="{{::$ctrl.quicklinks.btnTwo.icon}}">
|
|
</vn-icon>
|
|
</a>
|
|
<a ng-if="$ctrl.quicklinks.btnThree"
|
|
vn-tooltip="{{::$ctrl.quicklinks.btnThree.tooltip}}"
|
|
ui-sref="{{::$ctrl.quicklinks.btnThree.state}}" target="_blank">
|
|
<vn-icon
|
|
class="mdl-button mdl-js-button mdl-button--colored"
|
|
icon="{{::$ctrl.quicklinks.btnThree.icon}}">
|
|
</vn-icon>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|