salix/modules/client/front/basic-data/index.html

104 lines
3.2 KiB
HTML
Raw Normal View History

<mg-ajax path="Clients/{{patch.params.id}}" options="vnPatch"></mg-ajax>
2017-02-21 15:21:55 +00:00
<vn-watcher
vn-id="watcher"
data="$ctrl.client"
form="form"
2017-06-03 11:01:47 +00:00
save="patch">
2017-02-21 15:21:55 +00:00
</vn-watcher>
2020-09-17 18:12:52 +00:00
<vn-crud-model
auto-load="true"
url="ContactChannels"
data="contactChannels">
</vn-crud-model>
<form name="form" vn-http-submit="$ctrl.onSubmit()" class="vn-w-md">
2019-10-18 19:36:30 +00:00
<vn-card class="vn-pa-lg">
<vn-horizontal>
<vn-textfield
vn-one
label="Comercial Name"
2019-10-18 19:36:30 +00:00
ng-model="$ctrl.client.name"
rule
vn-focus>
</vn-textfield>
<vn-autocomplete
vn-one
ng-model="$ctrl.client.businessTypeFk"
url="BusinessTypes"
show-field="description"
value-field="code"
label="Business type">
</vn-autocomplete>
2019-10-18 19:36:30 +00:00
</vn-horizontal>
<vn-horizontal>
<vn-textfield
vn-one
label="Contact"
ng-model="$ctrl.client.contact"
rule>
</vn-textfield>
<vn-textfield
vn-one
label="Email"
2019-10-18 19:36:30 +00:00
ng-model="$ctrl.client.email"
rule
info="You can save multiple emails">
</vn-textfield>
</vn-horizontal>
<vn-horizontal>
<vn-textfield
vn-one
label="Phone"
ng-model="$ctrl.client.phone"
rule>
</vn-textfield>
<vn-textfield
vn-one
label="Mobile"
ng-model="$ctrl.client.mobile"
rule>
</vn-textfield>
</vn-horizontal>
<vn-horizontal>
<vn-worker-autocomplete
2019-10-18 19:36:30 +00:00
vn-one
ng-model="$ctrl.client.salesPersonFk"
departments="['VT', 'shopping']"
2019-10-18 19:36:30 +00:00
show-field="nickname"
label="Salesperson"
vn-acl="salesAssistant">
</vn-worker-autocomplete>
<vn-autocomplete
2019-10-18 19:36:30 +00:00
vn-one
ng-model="$ctrl.client.contactChannelFk"
2020-09-17 18:12:52 +00:00
data="contactChannels"
2019-10-18 19:36:30 +00:00
label="Channel">
</vn-autocomplete>
</vn-horizontal>
<vn-horizontal>
<vn-autocomplete
ng-model="$ctrl.client.transferorFk"
url="Clients"
search-function="$ctrl.transferorSearchFunction($search)"
where="{id: {neq: $ctrl.client.id}}"
show-field="name"
value-field="id"
label="Previous client"
info="In case of a company succession, specify the grantor company"
rule>
</vn-autocomplete>
</vn-horizontal>
2019-10-18 19:36:30 +00:00
</vn-card>
<vn-button-bar>
2020-12-13 13:57:42 +00:00
<vn-submit
2020-12-15 15:51:36 +00:00
disabled="!watcher.dataChanged()"
2020-12-13 13:57:42 +00:00
label="Save">
</vn-submit>
<vn-button
2020-12-15 15:51:36 +00:00
class="cancel"
2020-12-13 13:57:42 +00:00
label="Undo changes"
2020-12-15 15:51:36 +00:00
disabled="!watcher.dataChanged()"
2020-12-13 13:57:42 +00:00
ng-click="watcher.loadOriginalData()">
</vn-button>
2019-10-18 19:36:30 +00:00
</vn-button-bar>
</form>