2020-05-06 12:38:09 +00:00
|
|
|
<vn-descriptor-content
|
|
|
|
module="invoiceOut"
|
|
|
|
description="$ctrl.invoiceOut.ref">
|
2020-04-30 10:48:52 +00:00
|
|
|
<slot-menu>
|
2020-05-06 12:38:09 +00:00
|
|
|
<a class="vn-item"
|
|
|
|
href="api/InvoiceOuts/{{$ctrl.id}}/download?access_token={{$ctrl.vnToken.token}}"
|
|
|
|
target="_blank"
|
|
|
|
name="showInvoicePdf"
|
|
|
|
translate>
|
|
|
|
Show invoice PDF
|
|
|
|
</a>
|
|
|
|
<vn-item
|
|
|
|
ng-click="deleteConfirmation.show()"
|
|
|
|
vn-acl="invoicing"
|
|
|
|
vn-acl-action="remove"
|
|
|
|
name="deleteInvoice"
|
|
|
|
translate>
|
|
|
|
Delete Invoice
|
|
|
|
</vn-item>
|
|
|
|
<vn-item
|
|
|
|
ng-click="bookConfirmation.show()"
|
|
|
|
vn-acl="invoicing"
|
|
|
|
vn-acl-action="remove"
|
|
|
|
name="bookInvoice"
|
|
|
|
translate>
|
|
|
|
Book invoice
|
|
|
|
</vn-item>
|
2020-04-30 10:48:52 +00:00
|
|
|
</slot-menu>
|
|
|
|
<slot-body>
|
2019-03-26 13:27:08 +00:00
|
|
|
<div class="attributes">
|
2020-04-30 10:48:52 +00:00
|
|
|
<vn-label-value
|
|
|
|
label="Date"
|
2019-10-18 23:18:25 +00:00
|
|
|
value="{{$ctrl.invoiceOut.issued | date: 'dd/MM/yyyy'}}">
|
2019-03-26 13:27:08 +00:00
|
|
|
</vn-label-value>
|
2020-04-30 10:48:52 +00:00
|
|
|
<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>
|
2020-04-30 10:48:52 +00:00
|
|
|
<vn-label-value
|
2020-09-03 13:11:16 +00:00
|
|
|
label="Client">
|
|
|
|
<span
|
|
|
|
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>
|
2020-04-30 10:48:52 +00:00
|
|
|
<vn-label-value
|
|
|
|
label="Company"
|
2019-03-26 13:27:08 +00:00
|
|
|
value="{{$ctrl.invoiceOut.company.code}}">
|
|
|
|
</vn-label-value>
|
|
|
|
</div>
|
2020-04-30 10:48:52 +00:00
|
|
|
<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}]"
|
2020-04-30 10:48:52 +00:00
|
|
|
icon="icon-ticket">
|
|
|
|
</vn-quick-link>
|
|
|
|
</div>
|
|
|
|
<div ng-transclude="btnThree">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</slot-body>
|
|
|
|
</vn-descriptor-content>
|
2019-04-26 10:05:49 +00:00
|
|
|
<vn-confirm
|
|
|
|
vn-id="deleteConfirmation"
|
2020-03-31 13:15:16 +00:00
|
|
|
on-accept="$ctrl.deleteInvoiceOut()"
|
2019-04-26 10:05:49 +00:00
|
|
|
question="Are you sure you want to delete this invoice?">
|
2019-04-30 09:03:48 +00:00
|
|
|
</vn-confirm>
|
|
|
|
<vn-confirm
|
|
|
|
vn-id="bookConfirmation"
|
2020-03-31 13:15:16 +00:00
|
|
|
on-accept="$ctrl.bookInvoiceOut()"
|
2019-04-30 09:03:48 +00:00
|
|
|
question="Are you sure you want to book this invoice?">
|
2020-09-03 13:11:16 +00:00
|
|
|
</vn-confirm>
|
|
|
|
<vn-client-descriptor-popover
|
|
|
|
vn-id="clientDescriptor">
|
|
|
|
</vn-client-descriptor-popover>
|