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

133 lines
4.1 KiB
HTML
Raw Normal View History

2017-02-21 15:21:55 +00:00
<vn-watcher
vn-id="watcher"
url="Addresses/createDefaultAddress"
2017-02-21 15:21:55 +00:00
id-field="id"
data="$ctrl.data"
2018-02-08 11:57:57 +00:00
save="post"
2017-02-21 15:21:55 +00:00
form="form">
</vn-watcher>
<vn-crud-model
vn-id="model"
url="AddressObservations"
fields="['id', 'addressFk', 'observationTypeFk', 'description']"
link="{addressFk: $ctrl.$stateParams.addressId}"
data="observations"
auto-load="true">
</vn-crud-model>
<form name="form" ng-submit="$ctrl.onSubmit()" compact>
<vn-card class="vn-pa-lg">
2019-10-09 22:47:29 +00:00
<vn-horizontal>
<vn-check
vn-one
label="Default" ng-model="$ctrl.data.isDefaultAddress">
</vn-check>
2018-03-01 22:38:14 +00:00
</vn-horizontal>
<vn-horizontal>
2019-10-09 22:47:29 +00:00
<vn-textfield
vn-one
label="Consignee"
ng-model="$ctrl.address.nickname"
rule
vn-focus>
</vn-textfield>
<vn-textfield
vn-one
label="Street address"
ng-model="$ctrl.address.street"
rule>
</vn-textfield>
2018-03-01 22:38:14 +00:00
</vn-horizontal>
<vn-horizontal>
2019-10-09 22:47:29 +00:00
<vn-autocomplete
vn-one
vn-id="province"
ng-model="$ctrl.address.provinceFk"
url="Provinces"
show-field="name"
value-field="id"
label="Province">
</vn-autocomplete>
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.address.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.address.city">
</vn-autocomplete>
2019-07-08 12:07:09 +00:00
<vn-autocomplete vn-one
url="Postcodes/location"
fields="['code', 'townFk']"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.address.postalCode"
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> -->
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.address.postalCode"
rule>
</vn-textfield>
<!--
<vn-icon-button
vn-auto
class="vn-my-md"
2019-07-08 12:07:09 +00:00
icon="add_circle"
vn-tooltip="New postcode"
ng-click="postcode.open()">
</vn-icon-button>
-->
</vn-horizontal>
2018-03-01 22:38:14 +00:00
<vn-horizontal>
2018-09-10 11:00:01 +00:00
<vn-autocomplete
vn-one
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.address.agencyModeFk"
url="AgencyModes/isActive"
2018-03-01 22:38:14 +00:00
show-field="name"
value-field="id"
label="Agency">
2018-03-01 22:38:14 +00:00
</vn-autocomplete>
2019-10-09 22:47:29 +00:00
<vn-textfield
vn-one
label="Phone"
ng-model="$ctrl.address.phone"
rule>
</vn-textfield>
<vn-textfield
vn-one
label="Mobile"
ng-model="$ctrl.address.mobile"
rule>
</vn-textfield>
2018-03-01 22:38:14 +00:00
</vn-horizontal>
</vn-card>
<vn-button-bar>
2017-06-07 06:39:40 +00:00
<vn-submit label="Save"></vn-submit>
2019-10-18 19:36:30 +00:00
<vn-button
label="Cancel"
2019-10-09 22:47:29 +00:00
ui-sref="client.card.address.index">
2019-10-18 19:36:30 +00:00
</vn-button>
</vn-button-bar>
</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>