32 lines
944 B
HTML
32 lines
944 B
HTML
<mg-ajax path="Clients/{{patch.params.id}}" options="vnPatch"></mg-ajax>
|
|
<vn-watcher
|
|
vn-id="watcher"
|
|
data="$ctrl.client"
|
|
form="form"
|
|
save="patch">
|
|
</vn-watcher>
|
|
<form name="form" ng-submit="$ctrl.onSubmit()" class="vn-w-md">
|
|
<vn-card class="vn-pa-lg">
|
|
<vn-horizontal>
|
|
<vn-input-number
|
|
vn-one
|
|
min="0"
|
|
label="Credit"
|
|
ng-model="$ctrl.client.credit"
|
|
vn-focus
|
|
rule>
|
|
</vn-input-number>
|
|
</vn-horizontal>
|
|
</vn-card>
|
|
<vn-button-bar>
|
|
<vn-submit label="Save"></vn-submit>
|
|
<vn-button ng-click="$ctrl.cancel()" label="Cancel"></vn-button>
|
|
</vn-button-bar>
|
|
</form>
|
|
<vn-confirm
|
|
vn-id="confirmation"
|
|
on-response="$ctrl.returnDialog($response)"
|
|
question="Esta modificación retrasará el plazo del próximo recobro"
|
|
message="¿Desea continuar?">
|
|
</vn-confirm>
|