salix/modules/client/front/create/index.html

154 lines
5.5 KiB
HTML
Raw Normal View History

<mg-ajax path="Clients/createWithUser" options="vnPost"></mg-ajax>
<vn-watcher
vn-id="watcher"
2017-02-21 10:36:43 +00:00
data="$ctrl.client"
2017-02-21 15:21:55 +00:00
form="form"
save="post">
</vn-watcher>
2019-01-30 22:47:06 +00:00
<div class="content-block">
2019-07-08 12:07:09 +00:00
<form name="form" vn-http-submit="$ctrl.onSubmit()" compact>
<vn-card class="vn-pa-lg">
2018-03-01 22:38:14 +00:00
<vn-horizontal>
2019-10-09 22:47:29 +00:00
<vn-textfield
vn-two
label="Comercial Name"
ng-model="$ctrl.client.name"
rule
vn-focus>
</vn-textfield>
2018-03-01 22:38:14 +00:00
<vn-autocomplete vn-one
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.client.salesPersonFk"
url="Clients/activeWorkersWithRole"
search-function="{firstName: $search}"
show-field="firstName"
2018-03-01 22:38:14 +00:00
value-field="id"
where="{role: 'employee'}"
label="Salesperson">
2019-07-29 11:12:36 +00:00
<tpl-item>{{firstName}} {{lastName}}</tpl-item>
2018-03-01 22:38:14 +00:00
</vn-autocomplete>
</vn-horizontal>
2018-03-22 17:02:48 +00:00
<vn-horizontal>
2019-10-09 22:47:29 +00:00
<vn-textfield
vn-two
label="Business name"
ng-model="$ctrl.client.socialName"
rule>
</vn-textfield>
<vn-textfield
vn-one
label="Tax number"
ng-model="$ctrl.client.fi"
rule>
</vn-textfield>
2018-05-31 11:34:48 +00:00
</vn-horizontal>
<vn-horizontal>
2018-03-22 17:02:48 +00:00
<vn-textfield
vn-two
label="Street"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.client.street"
rule>
2018-03-22 17:02:48 +00:00
</vn-textfield>
2018-05-31 11:34:48 +00:00
</vn-horizontal>
<vn-horizontal>
2019-10-09 22:47:29 +00:00
<vn-autocomplete
vn-id="country"
vn-one
ng-model="$ctrl.client.countryFk"
url="Countries"
show-field="country"
value-field="id"
label="Country">
</vn-autocomplete>
2019-10-09 22:47:29 +00:00
<vn-autocomplete
vn-id="province"
vn-one
url="Provinces"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.client.provinceFk"
where="{countryFk: country.selection.id}"
show-field="name"
value-field="id"
label="Province">
</vn-autocomplete>
</vn-horizontal>
<vn-horizontal>
2019-10-09 22:47:29 +00:00
<vn-textfield
vn-one
label="City"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.client.city"
rule>
</vn-textfield>
<!--
<vn-autocomplete vn-id="town" vn-one
label="City"
url="Towns"
fields="['id', 'name']"
where="{provinceFk: province.selection.id}"
show-field="name"
value-field="name"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.client.city">
</vn-autocomplete>
<vn-icon-button
vn-auto
class="vn-my-md"
icon="add_circle"
vn-tooltip="New postcode"
ng-click="postcode.open()">
</vn-icon-button>
-->
2019-10-09 22:47:29 +00:00
<vn-textfield
vn-one
label="Postcode"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.client.postcode"
rule>
</vn-textfield>
<!-- <vn-autocomplete vn-one
url="Postcodes/location"
fields="['code', 'townFk']"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.client.postcode"
2019-07-08 12:07:09 +00:00
selection="$ctrl.postcodeSelection"
search-function="{code: $search}"
where="{townFk: town.selection.id}"
order="code, townFk"
show-field="code"
value-field="code"
label="Postcode">
<tpl-item>
{{code}}, {{town.name}} - {{town.province.name}}
({{town.province.country.country}})
</tpl-item>
</vn-autocomplete> -->
2018-03-22 17:02:48 +00:00
</vn-horizontal>
2018-05-31 11:34:48 +00:00
<vn-horizontal>
<vn-textfield
vn-one
label="Web user"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.client.userName"
rule>
2018-05-31 11:34:48 +00:00
</vn-textfield>
<vn-textfield
vn-one
label="Email"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.client.email"
rule
2018-05-31 11:34:48 +00:00
info="You can save multiple emails">
</vn-textfield>
</vn-horizontal>
2019-10-09 22:47:29 +00:00
<vn-horizontal>
2018-05-31 11:34:48 +00:00
<vn-check
vn-one
label="Is equalizated"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.client.isEqualizated">
2018-05-31 11:34:48 +00:00
</vn-check>
</vn-horizontal>
2017-02-21 15:21:55 +00:00
</vn-card>
<vn-button-bar>
<vn-submit label="Create"></vn-submit>
2018-05-31 14:51:33 +00:00
<vn-button ui-sref="client.index" label="Cancel"></vn-button>
2017-02-21 15:21:55 +00:00
</vn-button-bar>
2019-01-30 22:47:06 +00:00
</form>
2019-07-08 12:07:09 +00:00
<!-- New postcode dialog -->
<vn-client-postcode vn-id="postcode"
2019-10-30 15:57:14 +00:00
on-response="$ctrl.onResponse($response)">
2019-07-08 12:07:09 +00:00
</vn-client-postcode>
</div>