2017-06-03 11:01:47 +00:00
|
|
|
import ngModule from '../module';
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2017-06-03 11:01:47 +00:00
|
|
|
export default class Controller {
|
2019-06-13 11:08:11 +00:00
|
|
|
constructor($scope, $state, $http) {
|
2017-06-03 11:01:47 +00:00
|
|
|
this.$ = $scope;
|
2017-02-07 11:58:25 +00:00
|
|
|
this.$state = $state;
|
2019-06-13 11:08:11 +00:00
|
|
|
this.$http = $http;
|
2017-02-07 11:58:25 +00:00
|
|
|
this.client = {
|
|
|
|
active: true
|
2017-01-31 13:13:06 +00:00
|
|
|
};
|
|
|
|
}
|
2019-06-13 11:08:11 +00:00
|
|
|
|
|
|
|
setLocation() {
|
|
|
|
const location = this.$.postcode.selection;
|
|
|
|
if (!location || !location.town) return;
|
|
|
|
const town = location.town;
|
|
|
|
const province = town.province;
|
|
|
|
const country = province.country;
|
|
|
|
|
|
|
|
this.client.city = location.town.name;
|
|
|
|
this.client.provinceFk = province.id;
|
|
|
|
this.client.countryFk = country.id;
|
|
|
|
}
|
|
|
|
|
2017-02-07 11:58:25 +00:00
|
|
|
onSubmit() {
|
2017-06-03 11:01:47 +00:00
|
|
|
this.$.watcher.submit().then(
|
2018-05-23 12:26:51 +00:00
|
|
|
json => this.$state.go('client.card.basicData', {id: json.data.id})
|
2017-02-07 11:58:25 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-06-13 11:08:11 +00:00
|
|
|
Controller.$inject = ['$scope', '$state', '$http'];
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2017-06-03 11:01:47 +00:00
|
|
|
ngModule.component('vnClientCreate', {
|
2018-05-23 12:26:51 +00:00
|
|
|
template: require('./index.html'),
|
2017-02-07 11:58:25 +00:00
|
|
|
controller: Controller
|
2017-06-03 11:01:47 +00:00
|
|
|
});
|