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

60 lines
2.0 KiB
HTML
Raw Normal View History

2020-05-06 12:38:09 +00:00
<vn-descriptor-content
module="invoiceOut"
description="$ctrl.invoiceOut.ref"
summary="$ctrl.$.summary">
2021-11-09 14:10:43 +00:00
<slot-dot-menu>
<vn-invoice-out-descriptor-menu
2021-11-09 14:10:43 +00:00
invoice-out="$ctrl.invoiceOut"
parent-reload="$ctrl.reload()"
2021-11-09 14:10:43 +00:00
/>
</slot-dot-menu>
<slot-body>
2019-03-26 13:27:08 +00:00
<div class="attributes">
<vn-label-value
label="Date"
value="{{$ctrl.invoiceOut.issued | date: 'dd/MM/yyyy'}}">
2019-03-26 13:27:08 +00:00
</vn-label-value>
<vn-label-value
label="Import"
2019-04-08 14:53:37 +00:00
value="{{$ctrl.invoiceOut.amount | currency: 'EUR': 2}}">
2019-03-26 13:27:08 +00:00
</vn-label-value>
<vn-label-value
2020-09-03 13:11:16 +00:00
label="Client">
<span
2020-09-03 13:11:16 +00:00
ng-click="clientDescriptor.show($event, $ctrl.invoiceOut.client.id)"
class="link">
{{$ctrl.invoiceOut.client.name}}
</span>
2019-03-26 13:27:08 +00:00
</vn-label-value>
<vn-label-value
label="Company"
2019-03-26 13:27:08 +00:00
value="{{$ctrl.invoiceOut.company.code}}">
</vn-label-value>
</div>
<div class="quicklinks">
<div ng-transclude="btnOne">
<vn-quick-link
tooltip="Client card"
state="['client.card.summary', {id: $ctrl.invoiceOut.clientFk}]"
icon="person">
</vn-quick-link>
</div>
<div ng-transclude="btnTwo">
<vn-quick-link
tooltip="Invoice ticket list"
2020-05-29 09:10:58 +00:00
state="['ticket.index', {q: $ctrl.filter}]"
icon="icon-ticket">
</vn-quick-link>
</div>
<div ng-transclude="btnThree">
</div>
</div>
</slot-body>
</vn-descriptor-content>
<vn-popup vn-id="summary">
<vn-invoice-out-summary invoice-out="$ctrl.invoiceOut"></vn-invoice-out-summary>
</vn-popup>
<vn-client-descriptor-popover
vn-id="clientDescriptor">
</vn-client-descriptor-popover>