2019-10-02 17:24:42 +00:00
|
|
|
<vn-data-viewer
|
|
|
|
data="$ctrl.classifications"
|
|
|
|
class="vn-w-md">
|
2019-10-01 14:17:57 +00:00
|
|
|
<vn-card pad-medium>
|
2019-10-02 17:24:42 +00:00
|
|
|
<vn-horizontal
|
|
|
|
ng-repeat="classification in $ctrl.classifications track by classification.id"
|
|
|
|
class="pad-medium-bottom insurance"
|
|
|
|
style="align-items: center;">
|
|
|
|
<vn-one
|
|
|
|
border-radius
|
|
|
|
class="pad-small border-solid"
|
|
|
|
ng-class="{'item-hightlight': !classification.finished,'item-disabled': classification.finished}">
|
|
|
|
<vn-horizontal style="align-items: center;">
|
|
|
|
<vn-none pad-medium-h>
|
|
|
|
<vn-icon-button
|
|
|
|
ng-if="!classification.finished"
|
|
|
|
icon="lock"
|
|
|
|
vn-tooltip="Close contract"
|
|
|
|
ng-click="$ctrl.closeContract(classification)">
|
|
|
|
</vn-icon-button>
|
|
|
|
</vn-none>
|
|
|
|
<vn-one border-solid-right>
|
|
|
|
<div><vn-label translate>Since</vn-label> {{::classification.started | dateTime:'dd/MM/yyyy'}}</div>
|
|
|
|
<div><vn-label translate>To</vn-label> {{classification.finished | dateTime:'dd/MM/yyyy'}}</div>
|
|
|
|
</vn-one>
|
|
|
|
<vn-vertical vn-one pad-medium-h>
|
|
|
|
<vn-horizontal ng-repeat="insurance in classification.insurances track by insurance.id">
|
|
|
|
<vn-one>
|
|
|
|
<vn-label-value label="Credit"
|
|
|
|
value="{{::insurance.credit}}">
|
|
|
|
</vn-label-value>
|
|
|
|
</vn-one>
|
|
|
|
<vn-one>
|
|
|
|
<vn-label-value label="Grade"
|
|
|
|
value="{{::insurance.grade}}">
|
|
|
|
</vn-label-value>
|
|
|
|
</vn-one>
|
|
|
|
<vn-one>
|
|
|
|
<vn-label-value label="Date"
|
|
|
|
value="{{::insurance.created | dateTime:'dd/MM/yyyy' }}">
|
|
|
|
</vn-label-value>
|
|
|
|
</vn-one>
|
|
|
|
</vn-horizontal>
|
|
|
|
</vn-vertical>
|
|
|
|
<a vn-auto ui-sref="client.card.creditInsurance.insurance.index({classificationId: {{classification.id}}})">
|
|
|
|
<vn-icon-button icon="desktop_windows" vn-tooltip="View credits"></vn-icon-button>
|
|
|
|
</a>
|
|
|
|
</vn-horizontal>
|
|
|
|
</vn-one>
|
|
|
|
</vn-horizontal>
|
2018-03-14 10:36:57 +00:00
|
|
|
</vn-card>
|
2019-10-02 17:24:42 +00:00
|
|
|
</vn-data-viewer>
|
2019-10-01 14:17:57 +00:00
|
|
|
<vn-float-button
|
|
|
|
ng-if="$ctrl.canCreateNew()"
|
|
|
|
vn-tooltip="New contract"
|
|
|
|
fixed-bottom-right
|
|
|
|
ui-sref="client.card.creditInsurance.create"
|
|
|
|
icon="add"
|
|
|
|
vn-bind="+"
|
|
|
|
label="Add">
|
|
|
|
</vn-float-button>
|
2018-03-28 13:07:48 +00:00
|
|
|
<vn-confirm
|
|
|
|
vn-id="close-contract"
|
|
|
|
on-response="$ctrl.returnDialog(response)"
|
|
|
|
question="Close contract"
|
|
|
|
message="Are you sure you want to close this contract?">
|
|
|
|
</vn-confirm>
|