salix/modules/order/front/summary/index.html

91 lines
4.0 KiB
HTML
Raw Normal View History

2019-01-20 15:47:04 +00:00
<vn-card class="summary">
<h5>{{$ctrl.summary.id}} - {{$ctrl.summary.client.name}} - {{$ctrl.summary.client.salesPerson.id}}</h5>
<vn-horizontal class="ticketSummary__data">
<vn-one>
<vn-label-value label="Id"
value="{{$ctrl.summary.id}}">
</vn-label-value>
<vn-label-value label="Nickname"
value="{{$ctrl.summary.address.nickname}}">
</vn-label-value>
<vn-label-value label="Confirmed"
value="{{$ctrl.summary.isConfirmed}}">
</vn-label-value>
<vn-label-value label="Warehouse"
value="{{$ctrl.summary.sourceApp}}">
</vn-label-value>
</vn-one>
<vn-one>
<vn-label-value label="Created"
2019-02-27 16:04:00 +00:00
value="{{$ctrl.summary.created | dateTime: 'dd/MM/yyyy HH:mm'}}">
2019-01-20 15:47:04 +00:00
</vn-label-value>
<vn-label-value label="Confirmed"
2019-02-27 16:04:00 +00:00
value="{{$ctrl.summary.confirmed | dateTime: 'dd/MM/yyyy'}}">
2019-01-20 15:47:04 +00:00
</vn-label-value>
<vn-label-value label="Address"
value="{{$ctrl.formattedAddress}}">
<vn-label-value label="Phone"
value="{{$ctrl.summary.address.phone}}">
</vn-label-value>
</vn-one>
<vn-one>
<vn-label-value label="{{'Notes'}}"
value="{{$ctrl.summary.note}}">
</vn-label-value>
</vn-one>
<vn-one class="taxes">
<p><vn-label translate>Subtotal</vn-label> {{$ctrl.summary.subTotal | currency: 'EUR':2}}</p>
<p><vn-label translate>VAT</vn-label> {{$ctrl.summary.VAT | currency: 'EUR':2}}</p>
<p><vn-label><strong>Total</strong></vn-label> <strong>{{$ctrl.summary.total | currency: 'EUR':2}}</strong></p>
2019-01-20 15:47:04 +00:00
</vn-one>
2018-10-10 10:55:04 +00:00
<vn-auto>
2019-02-10 21:52:35 +00:00
<vn-table class="vn-grid">
<vn-thead>
<vn-tr>
<vn-th></vn-th>
<vn-th number>Item</vn-th>
<vn-th>Description</vn-th>
<vn-th number>Quantity</vn-th>
<vn-th number>Price</vn-th>
<vn-th number>Amount</vn-th>
</vn-tr>
</vn-thead>
<vn-tbody>
<vn-tr ng-repeat="row in $ctrl.summary.rows track by row.id">
<vn-td>
2018-10-10 10:55:04 +00:00
<vn-icon
ng-show="row.visible || row.available"
2019-02-08 16:49:51 +00:00
color-main
2018-10-10 10:55:04 +00:00
icon="warning"
vn-tooltip="Visible: {{::row.visible || 0}} <br> {{::$ctrl.translate.instant('Available')}} {{::row.available || 0}}">
</vn-icon>
<vn-icon ng-show="row.reserved" icon="icon-reserva"></vn-icon>
2019-02-10 21:52:35 +00:00
</vn-td>
<vn-td number>
2018-10-10 10:55:04 +00:00
<span
2019-01-17 10:11:45 +00:00
ng-click="$ctrl.showDescriptor($event, row.itemFk)"
2019-02-10 21:52:35 +00:00
class="link">
{{::row.itemFk | zeroFill:6}}
2018-10-10 10:55:04 +00:00
</span>
2019-02-10 21:52:35 +00:00
</vn-td>
<vn-td expand>
<vn-fetched-tags
max-length="6"
item="::row.item"
title="::row.item.name">
</vn-fetched-tags>
</vn-td>
2019-02-10 21:52:35 +00:00
<vn-td number>{{::row.quantity}}</vn-td>
<vn-td number>{{::row.price | currency: 'EUR':2}}</vn-td>
<vn-td number>{{::row.quantity * row.price | currency: 'EUR':2}}</vn-td>
</vn-tr>
</vn-tbody>
2018-10-10 10:55:04 +00:00
</table>
2019-01-20 15:47:04 +00:00
</vn-auto>
</vn-horizontal>
2018-10-10 10:55:04 +00:00
</vn-card>
2019-01-20 15:47:04 +00:00
<vn-item-descriptor-popover
vn-id="descriptor"
2018-10-10 10:55:04 +00:00
quicklinks="$ctrl.quicklinks">
</vn-item-descriptor-popover>