salix/modules/client/front/create/index.js

87 lines
1.9 KiB
JavaScript
Raw Normal View History

2017-06-03 11:01:47 +00:00
import ngModule from '../module';
2017-06-03 11:01:47 +00:00
export default class Controller {
2019-07-08 12:07:09 +00:00
constructor($scope, $state, $http, $translate, vnApp) {
2017-06-03 11:01:47 +00:00
this.$ = $scope;
this.$state = $state;
this.$http = $http;
2019-07-08 12:07:09 +00:00
this.$translate = $translate;
this.vnApp = vnApp;
this.client = {
active: true
};
}
2020-02-21 11:39:41 +00:00
onResponse(response) {
this.client.postcode = response.code;
}
onSubmit() {
return this.$.watcher.submit().then(
json => this.$state.go('client.card.basicData', {id: json.data.id})
);
}
get province() {
return this._province;
2019-07-08 12:07:09 +00:00
}
2020-02-21 11:39:41 +00:00
// Province auto complete
set province(selection) {
this._province = selection;
2019-07-08 12:07:09 +00:00
if (!selection) return;
2020-02-21 11:39:41 +00:00
const country = selection.country;
this.client.countryFk = country.id;
}
get town() {
return this._town;
}
// Town auto complete
set town(selection) {
this._town = selection;
if (!selection) return;
const province = selection.province;
const country = province.country;
2020-02-21 11:39:41 +00:00
const postcodes = selection.postcodes;
this.client.provinceFk = province.id;
this.client.countryFk = country.id;
2020-02-21 11:39:41 +00:00
if (postcodes.length === 1)
this.client.postcode = postcodes[0].code;
}
2020-02-21 11:39:41 +00:00
get postcode() {
return this._postcode;
2019-07-08 12:07:09 +00:00
}
2020-02-21 11:39:41 +00:00
// Postcode auto complete
set postcode(selection) {
this._postcode = selection;
if (!selection) return;
const town = selection.town;
const province = town.province;
const country = province.country;
this.client.city = town.name;
this.client.provinceFk = province.id;
this.client.countryFk = country.id;
}
}
2020-02-21 11:39:41 +00:00
2019-07-08 12:07:09 +00:00
Controller.$inject = ['$scope', '$state', '$http', '$translate', 'vnApp'];
2017-06-03 11:01:47 +00:00
ngModule.component('vnClientCreate', {
2018-05-23 12:26:51 +00:00
template: require('./index.html'),
controller: Controller
2017-06-03 11:01:47 +00:00
});