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

49 lines
1.2 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
};
}
2019-07-08 12:07:09 +00:00
get postcodeSelection() {
return this._postcodeSelection;
}
set postcodeSelection(selection) {
this._postcodeSelection = selection;
if (!selection) return;
const town = selection.town;
const province = town.province;
const country = province.country;
2019-07-08 12:07:09 +00:00
this.client.city = town.name;
this.client.provinceFk = province.id;
this.client.countryFk = country.id;
}
2019-07-08 12:07:09 +00:00
onResponse(response) {
this.client.postcode = response.code;
}
onSubmit() {
2019-07-08 12:07:09 +00:00
return this.$.watcher.submit().then(
2018-05-23 12:26:51 +00:00
json => this.$state.go('client.card.basicData', {id: json.data.id})
);
}
}
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
});