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

101 lines
3.6 KiB
HTML
Raw Normal View History

2019-01-21 14:21:24 +00:00
<div class="vn-descriptor">
<div class="header">
<a translate-attr="{title: 'Return to module index'}" ui-sref="client.index">
2018-03-01 15:52:35 +00:00
<vn-icon icon="chevron_left"></vn-icon>
</a>
<a translate-attr="{title: 'Preview'}" ui-sref="client.card.summary({id: $ctrl.client.id})">
2018-03-01 22:38:14 +00:00
<vn-icon icon="desktop_windows"></vn-icon>
2018-03-01 15:52:35 +00:00
</a>
2019-01-07 07:49:01 +00:00
<vn-icon-menu
vn-id="more-button"
icon="more_vert"
show-filter="false"
value-field="callback"
translate-fields="['name']"
data="$ctrl.moreOptions"
on-change="$ctrl.onMoreChange(value)"
on-open="$ctrl.onMoreOpen()">
</vn-icon-menu>
</div>
2019-01-21 14:21:24 +00:00
<div class="body">
<div class="attributes">
<h5>{{$ctrl.client.name}}</h5>
<vn-label-value label="Id"
value="{{$ctrl.client.id}}">
</vn-label-value>
<vn-label-value label="Phone"
value="{{$ctrl.client.phone | phone}}">
</vn-label-value>
<vn-label-value label="Credit"
value="{{$ctrl.client.credit | currency: 'EUR': 2}}">
2019-01-21 14:21:24 +00:00
</vn-label-value>
<vn-label-value label="Secured credit"
value="{{$ctrl.client.creditInsurance | currency: 'EUR': 2}}">
2019-01-21 14:21:24 +00:00
</vn-label-value>
<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>
2019-10-18 19:36:30 +00:00
<vn-quick-links
links="$ctrl.quicklinks">
</vn-quick-links>
2019-01-21 14:21:24 +00:00
</div>
2019-11-21 13:00:27 +00:00
</div>
<!-- SMS Dialog -->
<vn-client-sms vn-id="sms" sms="$ctrl.newSMS"></vn-client-sms>
2020-02-11 12:25:41 +00:00
<!-- SMS Dialog -->
<vn-dialog
vn-id="consumerReportDialog"
on-response="$ctrl.sendConsumerReport($response)">
<tpl-body>
<div>
<h5 style="text-align: center">
2020-02-25 06:51:16 +00:00
<span translate>Send consumer report</span>
2020-02-11 12:25:41 +00:00
</h5>
<vn-date-picker
vn-id="from"
vn-one
ng-model="$ctrl.from"
2020-02-25 06:51:16 +00:00
label="From date"
2020-02-11 12:25:41 +00:00
vn-focus>
</vn-date-picker>
<vn-date-picker
vn-id="to"
vn-one
ng-model="$ctrl.to"
2020-02-25 06:51:16 +00:00
label="To date">
2020-02-11 12:25:41 +00:00
</vn-date-picker>
</div>
</tpl-body>
<tpl-buttons>
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
<button response="accept" translate>Accept</button>
</tpl-buttons>
</vn-dialog>