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

92 lines
3.2 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="Phone"
2019-01-21 14:21:24 +00:00
value="{{$ctrl.client.phone | phone}}">
</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
label="Sales person"
value="{{$ctrl.client.salesPerson.user.nickname}}">
2019-01-21 14:21:24 +00:00
</vn-label-value>
</div>
<div class="icons">
<vn-icon
vn-tooltip="Client inactive"
icon="icon-disabled"
ng-class="{bright: $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"
ng-class="{bright: $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"
ng-class="{bright: $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"
ng-class="{bright: $ctrl.client.debt > $ctrl.client.credit}">
</vn-icon>
<vn-icon
vn-tooltip="Client not checked"
icon="icon-no036"
ng-class="{bright: $ctrl.client.isTaxDataChecked == false}">
</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">
<vn-quick-link
tooltip="New order"
state="['order.create', {clientFk: $ctrl.id}]"
icon="icon-basketadd">
</vn-quick-link>
</div>
<div ng-transclude="btnThree">
</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-06-15 07:07:13 +00:00
</vn-client-sms>