75 lines
1.7 KiB
JavaScript
75 lines
1.7 KiB
JavaScript
|
import ngModule from '../../module';
|
||
|
import Section from 'salix/components/section';
|
||
|
|
||
|
export default class Controller extends Section {
|
||
|
constructor($element, $) {
|
||
|
super($element, $);
|
||
|
|
||
|
this.address = {
|
||
|
supplierFk: this.$params.id
|
||
|
};
|
||
|
}
|
||
|
|
||
|
onSubmit() {
|
||
|
this.$.watcher.submit().then(res => {
|
||
|
this.$state.go('supplier.card.address.index');
|
||
|
});
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
|
||
|
if (!this.address.provinceFk)
|
||
|
this.address.provinceFk = province.id;
|
||
|
|
||
|
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;
|
||
|
|
||
|
if (!this.address.city)
|
||
|
this.address.city = town.name;
|
||
|
|
||
|
if (!this.address.provinceFk)
|
||
|
this.address.provinceFk = province.id;
|
||
|
}
|
||
|
|
||
|
onResponse(response) {
|
||
|
this.address.postalCode = response.code;
|
||
|
this.address.city = response.city;
|
||
|
this.address.provinceFk = response.provinceFk;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Controller.$inject = ['$element', '$scope'];
|
||
|
|
||
|
ngModule.vnComponent('vnSupplierAddressCreate', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller,
|
||
|
bindings: {
|
||
|
supplier: '<'
|
||
|
}
|
||
|
});
|