2018-05-23 12:26:51 +00:00
|
|
|
import ngModule from '../../module';
|
2020-03-17 10:17:50 +00:00
|
|
|
import Section from 'salix/components/section';
|
2020-01-24 08:47:24 +00:00
|
|
|
|
2020-03-17 10:17:50 +00:00
|
|
|
export default class Controller extends Section {
|
2020-01-24 08:47:24 +00:00
|
|
|
constructor($element, $) {
|
|
|
|
super($element, $);
|
2017-02-07 11:58:25 +00:00
|
|
|
|
2020-01-28 08:03:20 +00:00
|
|
|
this.address = {
|
|
|
|
isActive: true,
|
2019-02-28 07:55:34 +00:00
|
|
|
isDefaultAddress: false
|
2017-02-07 11:58:25 +00:00
|
|
|
};
|
2019-02-28 07:55:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onSubmit() {
|
2019-06-13 11:08:11 +00:00
|
|
|
this.$.watcher.submit().then(res => {
|
2020-01-28 08:03:20 +00:00
|
|
|
if (this.address.isDefaultAddress)
|
2019-02-28 07:55:34 +00:00
|
|
|
this.client.defaultAddressFk = res.data.id;
|
|
|
|
|
|
|
|
this.$state.go('client.card.address.index');
|
|
|
|
});
|
2017-02-07 11:58:25 +00:00
|
|
|
}
|
2020-01-24 08:47:24 +00:00
|
|
|
|
2020-01-28 10:56:26 +00:00
|
|
|
showCustomAgent(event) {
|
|
|
|
if (event.defaultPrevented) return;
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
this.$.customAgent.show();
|
|
|
|
}
|
|
|
|
|
2020-01-24 08:47:24 +00:00
|
|
|
onCustomAgentAccept() {
|
|
|
|
return this.$http.post(`CustomsAgents`, this.newCustomsAgent)
|
2020-10-20 12:42:23 +00:00
|
|
|
.then(res => this.address.customsAgentFk = res.data.id);
|
2020-01-24 08:47:24 +00:00
|
|
|
}
|
2020-02-24 10:27:36 +00:00
|
|
|
|
|
|
|
get town() {
|
|
|
|
return this._town;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Town auto complete
|
|
|
|
set town(selection) {
|
|
|
|
this._town = selection;
|
|
|
|
|
|
|
|
if (!selection) return;
|
|
|
|
|
|
|
|
const province = selection.province;
|
|
|
|
const postcodes = selection.postcodes;
|
|
|
|
|
2020-10-20 12:42:23 +00:00
|
|
|
if (!this.address.provinceFk)
|
|
|
|
this.address.provinceFk = province.id;
|
2020-02-24 10:27:36 +00:00
|
|
|
|
|
|
|
if (postcodes.length === 1)
|
|
|
|
this.address.postalCode = postcodes[0].code;
|
|
|
|
}
|
|
|
|
|
|
|
|
get postcode() {
|
|
|
|
return this._postcode;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Postcode auto complete
|
|
|
|
set postcode(selection) {
|
|
|
|
this._postcode = selection;
|
|
|
|
|
|
|
|
if (!selection) return;
|
|
|
|
|
|
|
|
const town = selection.town;
|
|
|
|
const province = town.province;
|
|
|
|
|
2020-05-21 09:14:34 +00:00
|
|
|
if (!this.address.city)
|
|
|
|
this.address.city = town.name;
|
|
|
|
|
2020-10-20 12:42:23 +00:00
|
|
|
if (!this.address.provinceFk)
|
|
|
|
this.address.provinceFk = province.id;
|
2020-02-24 10:27:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onResponse(response) {
|
|
|
|
this.address.postalCode = response.code;
|
2020-10-15 11:59:28 +00:00
|
|
|
this.address.city = response.city;
|
|
|
|
this.address.provinceFk = response.provinceFk;
|
2020-02-24 10:27:36 +00:00
|
|
|
}
|
2017-02-07 11:58:25 +00:00
|
|
|
}
|
2019-02-28 07:55:34 +00:00
|
|
|
|
2020-01-24 08:47:24 +00:00
|
|
|
Controller.$inject = ['$element', '$scope'];
|
2017-02-07 11:58:25 +00:00
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnClientAddressCreate', {
|
2018-05-23 12:26:51 +00:00
|
|
|
template: require('./index.html'),
|
2019-02-28 07:55:34 +00:00
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
client: '<'
|
|
|
|
}
|
2017-06-03 11:01:47 +00:00
|
|
|
});
|