2017-02-21 15:21:55 +00:00
|
|
|
<vn-watcher
|
|
|
|
vn-id="watcher"
|
2020-01-28 08:03:20 +00:00
|
|
|
url="Clients/{{$ctrl.$params.id}}/createAddress"
|
2017-02-21 15:21:55 +00:00
|
|
|
id-field="id"
|
2020-01-28 08:03:20 +00:00
|
|
|
data="$ctrl.address"
|
|
|
|
params="$ctrl.address"
|
2018-02-08 11:57:57 +00:00
|
|
|
save="post"
|
2017-02-21 15:21:55 +00:00
|
|
|
form="form">
|
|
|
|
</vn-watcher>
|
2019-06-13 11:08:11 +00:00
|
|
|
<vn-crud-model
|
|
|
|
vn-id="model"
|
2019-10-24 22:53:53 +00:00
|
|
|
url="AddressObservations"
|
2019-06-13 11:08:11 +00:00
|
|
|
fields="['id', 'addressFk', 'observationTypeFk', 'description']"
|
2020-03-18 13:08:04 +00:00
|
|
|
link="{addressFk: $ctrl.$params.addressId}"
|
2019-06-13 11:08:11 +00:00
|
|
|
data="observations"
|
|
|
|
auto-load="true">
|
|
|
|
</vn-crud-model>
|
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">
|
2019-10-09 22:47:29 +00:00
|
|
|
<vn-horizontal>
|
|
|
|
<vn-check
|
|
|
|
vn-one
|
2020-01-28 08:03:20 +00:00
|
|
|
label="Default" ng-model="$ctrl.address.isDefaultAddress">
|
2019-10-09 22:47:29 +00:00
|
|
|
</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>
|
2020-02-24 10:27:36 +00:00
|
|
|
<vn-datalist vn-one
|
|
|
|
label="Postcode"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="$ctrl.address.postalCode"
|
2020-02-24 10:27:36 +00:00
|
|
|
selection="$ctrl.postcode"
|
|
|
|
url="Postcodes/location"
|
|
|
|
fields="['code','townFk']"
|
2019-07-26 11:05:22 +00:00
|
|
|
order="code, townFk"
|
2019-06-13 11:08:11 +00:00
|
|
|
value-field="code"
|
2020-02-24 10:27:36 +00:00
|
|
|
show-field="code"
|
|
|
|
rule>
|
2019-06-13 11:08:11 +00:00
|
|
|
<tpl-item>
|
2020-02-24 10:27:36 +00:00
|
|
|
{{code}} - {{town.name}} ({{town.province.name}},
|
|
|
|
{{town.province.country.country}})
|
2019-06-13 11:08:11 +00:00
|
|
|
</tpl-item>
|
2020-02-24 10:27:36 +00:00
|
|
|
<append>
|
|
|
|
<vn-icon-button
|
|
|
|
icon="add_circle"
|
|
|
|
vn-tooltip="New postcode"
|
2020-03-04 11:51:29 +00:00
|
|
|
ng-click="postcode.open()"
|
|
|
|
vn-acl="deliveryBoss"
|
|
|
|
vn-acl-action="remove">
|
2020-02-24 10:27:36 +00:00
|
|
|
</vn-icon-button>
|
|
|
|
</append>
|
|
|
|
</vn-datalist>
|
2020-03-02 08:30:54 +00:00
|
|
|
<vn-datalist vn-id="town" vn-one
|
|
|
|
label="City"
|
|
|
|
ng-model="$ctrl.address.city"
|
|
|
|
selection="$ctrl.town"
|
|
|
|
url="Towns/location"
|
|
|
|
fields="['id', 'name', 'provinceFk']"
|
|
|
|
show-field="name"
|
|
|
|
value-field="name">
|
|
|
|
<tpl-item>
|
|
|
|
{{name}}, {{province.name}}
|
|
|
|
({{province.country.country}})
|
|
|
|
</tpl-item>
|
|
|
|
</vn-datalist>
|
|
|
|
<vn-autocomplete vn-id="province" vn-one
|
|
|
|
label="Province"
|
|
|
|
ng-model="$ctrl.address.provinceId"
|
|
|
|
url="Provinces/location"
|
|
|
|
fields="['id', 'name', 'countryFk']"
|
|
|
|
show-field="name"
|
|
|
|
value-field="id"
|
|
|
|
rule>
|
|
|
|
<tpl-item>{{name}} ({{country.country}})</tpl-item>
|
|
|
|
</vn-autocomplete>
|
2019-07-26 11:05:22 +00:00
|
|
|
</vn-horizontal>
|
2018-03-01 22:38:14 +00:00
|
|
|
<vn-horizontal>
|
2018-09-10 11:00:01 +00:00
|
|
|
<vn-autocomplete
|
|
|
|
vn-one
|
2020-01-28 08:03:20 +00:00
|
|
|
ng-model="$ctrl.address.agencyModeId"
|
2019-10-24 22:53:53 +00:00
|
|
|
url="AgencyModes/isActive"
|
2018-03-01 22:38:14 +00:00
|
|
|
show-field="name"
|
|
|
|
value-field="id"
|
2018-03-28 07:30:33 +00:00
|
|
|
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>
|
2020-01-24 08:47:24 +00:00
|
|
|
<vn-horizontal>
|
|
|
|
<vn-autocomplete vn-one
|
2020-01-28 08:03:20 +00:00
|
|
|
ng-model="$ctrl.address.incotermsId"
|
2020-01-24 08:47:24 +00:00
|
|
|
url="Incoterms"
|
|
|
|
show-field="name"
|
|
|
|
value-field="code"
|
|
|
|
label="Incoterms">
|
|
|
|
</vn-autocomplete>
|
|
|
|
<vn-autocomplete vn-one
|
2020-01-28 08:03:20 +00:00
|
|
|
ng-model="$ctrl.address.customsAgentId"
|
2020-01-24 08:47:24 +00:00
|
|
|
url="CustomsAgents"
|
|
|
|
show-field="fiscalName"
|
|
|
|
value-field="id"
|
|
|
|
label="Customs agent">
|
2020-01-28 10:56:26 +00:00
|
|
|
<append>
|
|
|
|
<vn-icon-button
|
|
|
|
icon="add_circle"
|
|
|
|
vn-tooltip="New customs agent"
|
|
|
|
ng-click="$ctrl.showCustomAgent($event)">
|
|
|
|
</vn-icon-button>
|
|
|
|
</append>
|
2020-01-24 08:47:24 +00:00
|
|
|
</vn-autocomplete>
|
|
|
|
</vn-horizontal>
|
2017-01-31 13:13:06 +00:00
|
|
|
</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>
|
2017-01-31 13:13:06 +00:00
|
|
|
</vn-button-bar>
|
2017-02-07 11:58:25 +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>
|
2020-01-24 08:47:24 +00:00
|
|
|
|
|
|
|
<!-- Create custom agent dialog -->
|
|
|
|
<vn-dialog class="edit"
|
|
|
|
vn-id="customAgent"
|
2020-05-06 12:38:09 +00:00
|
|
|
on-accept="$ctrl.onCustomAgentAccept()"
|
|
|
|
message="New customs agent">
|
2020-01-24 08:47:24 +00:00
|
|
|
<tpl-body>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textfield vn-one vn-focus
|
|
|
|
label="NIF"
|
|
|
|
ng-model="$ctrl.newCustomsAgent.nif"
|
|
|
|
required="true">
|
|
|
|
</vn-textfield>
|
|
|
|
<vn-textfield vn-one
|
|
|
|
label="Fiscal name"
|
|
|
|
ng-model="$ctrl.newCustomsAgent.fiscalName"
|
|
|
|
required="true">
|
|
|
|
</vn-textfield>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textfield vn-one
|
|
|
|
label="Street"
|
|
|
|
ng-model="$ctrl.newCustomsAgent.street">
|
|
|
|
</vn-textfield>
|
|
|
|
<vn-textfield vn-one
|
|
|
|
label="Phone"
|
|
|
|
ng-model="$ctrl.newCustomsAgent.phone">
|
|
|
|
</vn-textfield>
|
|
|
|
</vn-horizontal>
|
|
|
|
</tpl-body>
|
|
|
|
<tpl-buttons>
|
|
|
|
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
|
|
|
|
<button response="accept" translate>Create</button>
|
|
|
|
</tpl-buttons>
|
|
|
|
</vn-dialog>
|