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 {
|
2017-03-07 16:11:56 +00:00
|
|
|
constructor($scope, $state) {
|
2017-06-03 11:01:47 +00:00
|
|
|
this.$ = $scope;
|
2017-02-07 11:58:25 +00:00
|
|
|
this.$state = $state;
|
|
|
|
this.client = {
|
|
|
|
active: true
|
2017-01-31 13:13:06 +00:00
|
|
|
};
|
|
|
|
}
|
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
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-03-07 16:11:56 +00:00
|
|
|
Controller.$inject = ['$scope', '$state'];
|
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
|
|
|
});
|