salix/modules/claim/front/basic-data/index.js

29 lines
683 B
JavaScript
Raw Normal View History

2018-08-29 07:45:37 +00:00
import ngModule from '../module';
2018-08-29 09:43:25 +00:00
import './style.scss';
2018-08-29 07:45:37 +00:00
class Controller {
constructor($scope, $state, aclService) {
this.$scope = $scope;
this.$state = $state;
this.$stateParams = $state.params;
this.aclService = aclService;
}
onSubmit() {
this.$scope.watcher.submit().then(() => {
if (this.aclService.hasAny(['salesAssistant']))
this.$state.go('claim.card.detail');
});
}
}
Controller.$inject = ['$scope', '$state', 'aclService'];
2018-08-29 07:45:37 +00:00
ngModule.component('vnClaimBasicData', {
template: require('./index.html'),
controller: Controller,
2018-08-29 07:45:37 +00:00
bindings: {
claim: '<'
}
});