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

35 lines
728 B
JavaScript
Raw Normal View History

2018-05-23 12:26:51 +00:00
import ngModule from '../../module';
2018-05-23 12:26:51 +00:00
class Controller {
constructor($scope, $state, $filter) {
this.$ = $scope;
this.$state = $state;
this.recovery = {
2018-05-24 14:02:54 +00:00
started: new Date()
};
}
2018-07-25 11:37:27 +00:00
cancel() {
2018-07-25 11:37:27 +00:00
this.goToIndex();
}
goToIndex() {
this.$state.go('client.card.recovery.index');
}
onSubmit() {
this.recovery.clientFk = this.$state.params.id;
this.$.watcher.submit().then(
() => {
2018-07-25 11:37:27 +00:00
this.goToIndex();
}
);
}
}
2018-05-23 12:26:51 +00:00
Controller.$inject = ['$scope', '$state', '$filter'];
ngModule.component('vnClientRecoveryCreate', {
2018-05-23 12:26:51 +00:00
template: require('./index.html'),
controller: Controller
});