2020-10-30 14:11:45 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
import Section from 'salix/components/section';
|
|
|
|
|
|
|
|
export default class Controller extends Section {
|
|
|
|
get province() {
|
|
|
|
return this._province;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Province auto complete
|
|
|
|
set province(selection) {
|
2020-12-31 09:30:51 +00:00
|
|
|
const oldValue = this._province;
|
2020-10-30 14:11:45 +00:00
|
|
|
this._province = selection;
|
|
|
|
|
2020-12-31 09:30:51 +00:00
|
|
|
if (!selection || !oldValue) return;
|
2020-10-30 14:11:45 +00:00
|
|
|
|
|
|
|
const country = selection.country;
|
|
|
|
|
|
|
|
if (!this.supplier.countryFk)
|
|
|
|
this.supplier.countryFk = country.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
get town() {
|
|
|
|
return this._town;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Town auto complete
|
|
|
|
set town(selection) {
|
2020-12-31 09:30:51 +00:00
|
|
|
const oldValue = this._town;
|
2020-10-30 14:11:45 +00:00
|
|
|
this._town = selection;
|
|
|
|
|
2020-12-31 09:30:51 +00:00
|
|
|
if (!selection || !oldValue) return;
|
2020-10-30 14:11:45 +00:00
|
|
|
|
|
|
|
const province = selection.province;
|
|
|
|
const country = province.country;
|
|
|
|
const postcodes = selection.postcodes;
|
|
|
|
|
|
|
|
if (!this.supplier.provinceFk)
|
|
|
|
this.supplier.provinceFk = province.id;
|
|
|
|
|
|
|
|
if (!this.supplier.countryFk)
|
|
|
|
this.supplier.countryFk = country.id;
|
|
|
|
|
2020-11-04 10:37:54 +00:00
|
|
|
if (!this.supplier.postCode && postcodes.length === 1)
|
2020-10-30 14:11:45 +00:00
|
|
|
this.supplier.postCode = postcodes[0].code;
|
|
|
|
}
|
|
|
|
|
|
|
|
get postcode() {
|
|
|
|
return this._postcode;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Postcode auto complete
|
|
|
|
set postcode(selection) {
|
|
|
|
const oldValue = this._postcode;
|
|
|
|
this._postcode = selection;
|
|
|
|
|
|
|
|
if (!selection || !oldValue) return;
|
|
|
|
|
|
|
|
const town = selection.town;
|
|
|
|
const province = town.province;
|
|
|
|
const country = province.country;
|
|
|
|
|
|
|
|
if (!this.supplier.city)
|
|
|
|
this.supplier.city = town.name;
|
|
|
|
|
|
|
|
if (!this.supplier.provinceFk)
|
|
|
|
this.supplier.provinceFk = province.id;
|
|
|
|
|
|
|
|
if (!this.supplier.countryFk)
|
|
|
|
this.supplier.countryFk = country.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
onResponse(response) {
|
|
|
|
this.supplier.postCode = response.code;
|
|
|
|
this.supplier.city = response.city;
|
|
|
|
this.supplier.provinceFk = response.provinceFk;
|
|
|
|
this.supplier.countryFk = response.countryFk;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.vnComponent('vnSupplierFiscalData', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
supplier: '<'
|
|
|
|
}
|
|
|
|
});
|