2018-05-23 12:26:51 +00:00
|
|
|
import ngModule from '../../module';
|
2020-03-17 10:17:50 +00:00
|
|
|
import Section from 'salix/components/section';
|
2018-03-01 10:55:28 +00:00
|
|
|
|
2020-03-17 10:17:50 +00:00
|
|
|
class Controller extends Section {
|
|
|
|
constructor($element, $) {
|
|
|
|
super($element, $);
|
2018-03-01 10:55:28 +00:00
|
|
|
this.recovery = {
|
2023-01-16 14:18:24 +00:00
|
|
|
started: Date.vnNew()
|
2018-03-01 10:55:28 +00:00
|
|
|
};
|
|
|
|
}
|
2018-07-25 11:37:27 +00:00
|
|
|
|
2018-10-17 07:28:38 +00:00
|
|
|
cancel() {
|
2018-07-25 11:37:27 +00:00
|
|
|
this.goToIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
goToIndex() {
|
|
|
|
this.$state.go('client.card.recovery.index');
|
|
|
|
}
|
|
|
|
|
2018-03-01 10:55:28 +00:00
|
|
|
onSubmit() {
|
2020-03-17 10:17:50 +00:00
|
|
|
this.recovery.clientFk = this.$params.id;
|
2018-03-01 10:55:28 +00:00
|
|
|
this.$.watcher.submit().then(
|
|
|
|
() => {
|
2018-07-25 11:37:27 +00:00
|
|
|
this.goToIndex();
|
2018-03-01 10:55:28 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2020-03-17 10:17:50 +00:00
|
|
|
Controller.$inject = ['$element', '$scope'];
|
2018-03-01 10:55:28 +00:00
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnClientRecoveryCreate', {
|
2018-05-23 12:26:51 +00:00
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller
|
2018-03-01 10:55:28 +00:00
|
|
|
});
|