2018-07-09 11:01:46 +00:00
|
|
|
<mg-ajax path="/client/api/CreditClassifications/{{post.params.classificationId}}/insurances" options="vnPost"></mg-ajax>
|
2018-03-14 10:36:57 +00:00
|
|
|
<vn-watcher
|
|
|
|
vn-id="watcher"
|
|
|
|
data="$ctrl.insurance"
|
|
|
|
form="form"
|
|
|
|
save="post">
|
|
|
|
</vn-watcher>
|
2018-12-14 11:56:21 +00:00
|
|
|
<form name="form" ng-submit="$ctrl.onSubmit()" compact>
|
2018-03-14 10:36:57 +00:00
|
|
|
<vn-card pad-large>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
|
|
|
margin-medium-right
|
|
|
|
label="Credit"
|
|
|
|
model="$ctrl.insurance.credit",
|
|
|
|
rule="CreditInsurance.credit"
|
|
|
|
step="1"
|
|
|
|
vn-focus>
|
|
|
|
</vn-textfield>
|
|
|
|
<vn-date-picker vn-one
|
|
|
|
label="Date"
|
|
|
|
model="$ctrl.insurance.created"
|
2018-07-09 11:01:46 +00:00
|
|
|
ini-options="{enableTime: true, dateFormat: 'd-m-Y', time_24hr: true}">
|
2018-03-14 10:36:57 +00:00
|
|
|
</vn-date-picker>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
|
|
|
argin-medium-right
|
|
|
|
label="Grade"
|
|
|
|
model="$ctrl.insurance.grade"
|
|
|
|
rule="CreditInsurance.grade">
|
|
|
|
</vn-textfield>
|
|
|
|
</vn-horizontal>
|
|
|
|
</vn-card>
|
|
|
|
<vn-button-bar>
|
|
|
|
<vn-submit label="Save"></vn-submit>
|
2018-05-31 05:59:42 +00:00
|
|
|
<button
|
|
|
|
class="mdl-button mdl-button--raised mdl-button--colored"
|
|
|
|
translate
|
|
|
|
ui-sref="client.card.creditInsurance.insurance.index({classificationId: post.params.classificationId})">Cancel</button>
|
2018-03-14 10:36:57 +00:00
|
|
|
</vn-button-bar>
|
|
|
|
</form>
|