salix/modules/client/front/address/edit/index.js

44 lines
1000 B
JavaScript
Raw Normal View History

2018-05-23 12:26:51 +00:00
import ngModule from '../../module';
2017-06-07 06:39:40 +00:00
export default class Controller {
constructor($scope, $state) {
this.$ = $scope;
2018-02-01 12:28:45 +00:00
this.$state = $state;
this.$stateParams = $state.params;
}
2018-02-01 12:28:45 +00:00
removeObservation(index) {
this.$.watcher.setDirty();
this.$.model.remove(index);
2018-02-07 12:10:22 +00:00
}
cancel() {
2018-07-25 11:37:27 +00:00
this.goToIndex();
}
goToIndex() {
this.$state.go('client.card.address.index');
}
2018-02-01 12:28:45 +00:00
submit() {
this.$.watcher.check();
this.$.watcher.realSubmit()
.then(() => this.$.model.save(true))
.then(() => {
this.$.watcher.setPristine();
this.$.watcher.notifySaved();
2018-05-02 09:54:13 +00:00
this.card.reload();
2018-07-25 11:37:27 +00:00
this.goToIndex();
2018-02-01 12:28:45 +00:00
});
2018-03-16 14:08:36 +00:00
}
2017-06-07 06:39:40 +00:00
}
Controller.$inject = ['$scope', '$state'];
2017-06-07 06:39:40 +00:00
2018-05-23 12:26:51 +00:00
ngModule.component('vnClientAddressEdit', {
template: require('./index.html'),
2018-05-02 09:54:13 +00:00
controller: Controller,
require: {
card: '^vnClientCard'
}
2017-06-03 11:01:47 +00:00
});