2021-04-12 10:43:17 +00:00
|
|
|
<vn-descriptor-content module="invoiceIn" description="$ctrl.invoiceIn.supplierRef">
|
|
|
|
<slot-menu>
|
|
|
|
<vn-item
|
|
|
|
ng-click="deleteConfirmation.show()"
|
|
|
|
vn-acl="invoicing"
|
|
|
|
vn-acl-action="remove"
|
|
|
|
name="deleteInvoice"
|
|
|
|
translate>
|
|
|
|
Delete Invoice
|
|
|
|
</vn-item>
|
|
|
|
</slot-menu>
|
|
|
|
<slot-body>
|
|
|
|
<div class="attributes">
|
|
|
|
<vn-label-value label="Date" value="{{$ctrl.invoiceIn.issued | date: 'dd/MM/yyyy'}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value label="Booked" value="{{$ctrl.invoiceIn.booked | date: 'dd/MM/yyyy'}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value label="Import" value="{{$ctrl.invoiceIn.amount | currency: 'EUR': 2}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value label="Supplier">
|
|
|
|
<span ng-click="supplierDescriptor.show($event, $ctrl.invoiceIn.supplier.id)" class="link">
|
|
|
|
{{$ctrl.invoiceIn.supplier.nickname}}
|
|
|
|
</span>
|
|
|
|
</vn-label-value>
|
|
|
|
</div>
|
|
|
|
<div class="quicklinks">
|
|
|
|
<div ng-transclude="btnOne">
|
|
|
|
<vn-quick-link tooltip="Supplier" state="['supplier.card.summary', {id: $ctrl.invoiceIn.supplier.id}]"
|
|
|
|
icon="icon-supplier">
|
|
|
|
</vn-quick-link>
|
|
|
|
</div>
|
|
|
|
<div ng-transclude="btnTwo">
|
|
|
|
<vn-quick-link tooltip="Entries list" state="['entry.index', {q: $ctrl.entryFilter}]"
|
|
|
|
icon="icon-entry">
|
|
|
|
</vn-quick-link>
|
|
|
|
</div>
|
|
|
|
<div ng-transclude="btnThree">
|
|
|
|
<vn-quick-link tooltip="Invoice list" state="['invoiceIn.index', {q: $ctrl.invoiceInFilter}]"
|
|
|
|
icon="icon-invoiceIn">
|
|
|
|
</vn-quick-link>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</slot-body>
|
|
|
|
</vn-descriptor-content>
|
|
|
|
<vn-confirm vn-id="deleteConfirmation" on-accept="$ctrl.deleteInvoiceIn()"
|
|
|
|
question="Are you sure you want to delete this invoice?">
|
|
|
|
</vn-confirm>
|
|
|
|
<vn-supplier-descriptor-popover vn-id="supplierDescriptor">
|
|
|
|
</vn-supplier-descriptor-popover>
|