88 lines
3.9 KiB
HTML
88 lines
3.9 KiB
HTML
<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"
|
|
value="{{$ctrl.summary.created | date: 'dd/MM/yyyy HH:mm'}}">
|
|
</vn-label-value>
|
|
<vn-label-value label="Confirmed"
|
|
value="{{$ctrl.summary.confirmed | date: 'dd/MM/yyyy'}}">
|
|
</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>
|
|
</vn-one>
|
|
<vn-auto>
|
|
<table class="vn-grid">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th number translate>Item</th>
|
|
<th translate>Description</th>
|
|
<th number translate>Quantity</th>
|
|
<th number translate>Price</th>
|
|
<th number translate>Amount</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="row in $ctrl.summary.rows track by row.id">
|
|
<td>
|
|
<vn-icon
|
|
ng-show="row.visible || row.available"
|
|
orange
|
|
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>
|
|
</td>
|
|
<td number>
|
|
<span
|
|
ng-click="$ctrl.showDescriptor($event, row.itemFk)"
|
|
class="link" pointer>
|
|
{{("000000"+row.itemFk).slice(-6)}}
|
|
</span>
|
|
</td>
|
|
<td><vn-fetched-tags max-length="6" item="row.item"/></td>
|
|
<td number>{{::row.quantity}}</td>
|
|
<td number>{{::row.price | currency: 'EUR':2}}</td>
|
|
<td number>{{::row.quantity * row.price | currency: 'EUR':2}}</td>
|
|
</tr>
|
|
<tr ng-if="!$ctrl.summary.rows" class="list list-element">
|
|
<td colspan="8" style="text-align: center" translate>No results</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</vn-auto>
|
|
</vn-horizontal>
|
|
</vn-card>
|
|
<vn-item-descriptor-popover
|
|
vn-id="descriptor"
|
|
quicklinks="$ctrl.quicklinks">
|
|
</vn-item-descriptor-popover>
|