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

113 lines
3.9 KiB
HTML
Raw Normal View History

2020-05-06 12:38:09 +00:00
<vn-descriptor-content
module="client"
description="$ctrl.client.name">
<slot-menu>
2020-05-06 12:38:09 +00:00
<a class="vn-item"
ui-sref="ticket.create({clientFk: $ctrl.client.id})"
name="simpleTicket"
translate>
Simple ticket
</a>
<vn-item
ng-click="$ctrl.showSMSDialog()"
translate>
Send SMS
</vn-item>
</slot-menu>
<slot-body>
2019-01-21 14:21:24 +00:00
<div class="attributes">
2020-04-25 09:50:04 +00:00
<vn-label-value
label="Pay method"
value="{{$ctrl.client.payMethod.name}}">
2019-01-21 14:21:24 +00:00
</vn-label-value>
2020-04-25 09:50:04 +00:00
<vn-label-value
label="Credit"
value="{{$ctrl.client.credit | currency: 'EUR': 2}}">
2019-01-21 14:21:24 +00:00
</vn-label-value>
2020-04-25 09:50:04 +00:00
<vn-label-value
label="Secured credit"
value="{{$ctrl.client.creditInsurance | currency: 'EUR': 2}}">
2019-01-21 14:21:24 +00:00
</vn-label-value>
2020-04-25 09:50:04 +00:00
<vn-label-value
label="Risk"
2020-05-18 09:50:55 +00:00
value="{{$ctrl.client.debt | currency: 'EUR':2}}"
ng-class="{alert: $ctrl.client.debt > $ctrl.client.credit}"
info="Invoices minus payments plus orders not yet invoiced">
</vn-label-value>
2020-05-19 08:51:50 +00:00
<vn-label-value
2020-09-03 13:11:16 +00:00
label="Sales person">
<span
ng-click="workerDescriptor.show($event, $ctrl.client.salesPersonFk)"
class="link">
{{$ctrl.client.salesPersonUser.name}}
2020-09-03 13:11:16 +00:00
</span>
2019-01-21 14:21:24 +00:00
</vn-label-value>
</div>
<div class="icons">
<vn-icon
vn-tooltip="Client inactive"
icon="icon-disabled"
2020-12-04 12:40:58 +00:00
ng-if="$ctrl.client.isActive == false">
2018-09-04 09:49:00 +00:00
</vn-icon>
2019-01-21 14:21:24 +00:00
<vn-icon
2019-01-30 13:13:47 +00:00
vn-tooltip="Client frozen"
2019-01-21 14:21:24 +00:00
icon="icon-frozen"
2020-12-04 12:40:58 +00:00
ng-if="$ctrl.client.isFreezed == true">
2018-09-04 09:49:00 +00:00
</vn-icon>
2019-01-21 14:21:24 +00:00
<vn-icon
vn-tooltip="Web Account inactive"
icon="icon-noweb"
2020-12-04 12:40:58 +00:00
ng-if="$ctrl.client.account.active == false">
2018-09-04 09:49:00 +00:00
</vn-icon>
2019-01-21 14:21:24 +00:00
<vn-icon
vn-tooltip="Client has debt"
icon="icon-risk"
2020-12-04 12:40:58 +00:00
ng-if="$ctrl.client.debt > $ctrl.client.credit">
2019-01-21 14:21:24 +00:00
</vn-icon>
<vn-icon
vn-tooltip="Client not checked"
icon="icon-no036"
2020-12-04 12:40:58 +00:00
ng-if="$ctrl.client.isTaxDataChecked == false">
2019-01-21 14:21:24 +00:00
</vn-icon>
</div>
<div class="quicklinks">
<div ng-transclude="btnOne">
<vn-quick-link
tooltip="Client ticket list"
state="['ticket.index', {q: $ctrl.filter}]"
icon="icon-ticket">
</vn-quick-link>
</div>
<div ng-transclude="btnTwo">
2020-11-18 16:22:40 +00:00
<vn-quick-link
tooltip="Client invoices list"
state="['invoiceOut.index', {q: $ctrl.filter}]"
2021-11-26 13:48:55 +00:00
icon="icon-invoice">
2020-11-18 16:22:40 +00:00
</vn-quick-link>
</div>
<div ng-transclude="btnThree">
<vn-quick-link
tooltip="New order"
state="['order.create', {clientFk: $ctrl.id}]"
icon="icon-basketadd">
</vn-quick-link>
</div>
2020-11-18 16:22:40 +00:00
<div ng-transclude="btnFour">
<vn-quick-link
vn-acl="hr"
vn-acl-action="remove"
tooltip="Go to user"
state="['account.card.summary', {id: $ctrl.id}]"
icon="face">
</vn-quick-link>
</div>
2020-04-25 09:50:04 +00:00
</div>
</slot-body>
</vn-descriptor-content>
<vn-client-sms
vn-id="sms"
sms="$ctrl.newSMS">
2020-09-03 13:11:16 +00:00
</vn-client-sms>
<vn-worker-descriptor-popover
vn-id="workerDescriptor">
</vn-worker-descriptor-popover>