2018-01-18 07:38:04 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
|
2018-02-14 13:22:35 +00:00
|
|
|
export default class Controller {
|
2018-08-30 06:50:03 +00:00
|
|
|
constructor($stateParams, $scope) {
|
|
|
|
this.$stateParams = $stateParams;
|
2018-02-14 13:22:35 +00:00
|
|
|
this.$scope = $scope;
|
|
|
|
}
|
|
|
|
|
2018-08-30 06:50:03 +00:00
|
|
|
onSubmit() {
|
|
|
|
this.$scope.watcher.check();
|
|
|
|
this.$scope.model.save().then(() => {
|
|
|
|
this.$scope.watcher.notifySaved();
|
|
|
|
this.$scope.model.refresh();
|
2018-02-14 13:22:35 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-30 06:50:03 +00:00
|
|
|
Controller.$inject = ['$stateParams', '$scope'];
|
2018-02-14 13:22:35 +00:00
|
|
|
|
2018-01-18 07:38:04 +00:00
|
|
|
ngModule.component('vnItemBarcode', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-02-14 13:22:35 +00:00
|
|
|
controller: Controller
|
2018-01-18 07:38:04 +00:00
|
|
|
});
|