2019-10-24 22:53:53 +00:00
|
|
|
<mg-ajax path="Clients/{{patch.params.id}}" options="vnPatch"></mg-ajax>
|
2017-12-04 07:17:29 +00:00
|
|
|
<vn-watcher
|
|
|
|
vn-id="watcher"
|
|
|
|
data="$ctrl.client"
|
|
|
|
form="form"
|
|
|
|
save="patch">
|
|
|
|
</vn-watcher>
|
2019-11-10 10:08:44 +00:00
|
|
|
<form name="form" ng-submit="$ctrl.onSubmit()" class="vn-w-md">
|
2019-10-04 22:16:57 +00:00
|
|
|
<vn-card class="vn-pa-lg">
|
2017-12-04 07:17:29 +00:00
|
|
|
<vn-horizontal>
|
2019-10-08 21:57:02 +00:00
|
|
|
<vn-input-number
|
|
|
|
vn-one
|
|
|
|
min="0"
|
2019-03-26 06:29:45 +00:00
|
|
|
label="Credit"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="$ctrl.client.credit"
|
2019-10-08 21:57:02 +00:00
|
|
|
vn-focus
|
|
|
|
rule>
|
2019-03-26 06:29:45 +00:00
|
|
|
</vn-input-number>
|
2017-12-04 07:17:29 +00:00
|
|
|
</vn-horizontal>
|
2018-03-01 22:38:14 +00:00
|
|
|
</vn-card>
|
|
|
|
<vn-button-bar>
|
2020-12-13 13:57:42 +00:00
|
|
|
<vn-submit
|
|
|
|
ng-if="watcher.dataChanged()"
|
|
|
|
label="Save">
|
|
|
|
</vn-submit>
|
|
|
|
<vn-button
|
|
|
|
ng-click="$ctrl.cancel()"
|
|
|
|
label="Cancel">
|
|
|
|
</vn-button>
|
2018-03-01 22:38:14 +00:00
|
|
|
</vn-button-bar>
|
2017-12-04 07:17:29 +00:00
|
|
|
</form>
|
2018-05-11 09:16:16 +00:00
|
|
|
<vn-confirm
|
|
|
|
vn-id="confirmation"
|
2020-07-29 08:54:45 +00:00
|
|
|
on-accept="$ctrl.returnDialog()"
|
2018-05-11 09:16:16 +00:00
|
|
|
question="Esta modificación retrasará el plazo del próximo recobro"
|
|
|
|
message="¿Desea continuar?">
|
|
|
|
</vn-confirm>
|