2018-03-16 14:06:42 +00:00
|
|
|
import ngModule from '../module';
|
2020-03-18 07:35:59 +00:00
|
|
|
import Section from 'salix/components/section';
|
2018-03-16 14:06:42 +00:00
|
|
|
|
2020-03-18 07:35:59 +00:00
|
|
|
class Controller extends Section {
|
2018-08-30 06:50:03 +00:00
|
|
|
onSubmit() {
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.watcher.check();
|
2020-03-18 08:41:23 +00:00
|
|
|
this.$.model.save().then(() => {
|
|
|
|
this.$.watcher.notifySaved();
|
|
|
|
this.$.watcher.updateOriginalData();
|
|
|
|
});
|
2018-03-16 14:06:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnTicketObservation', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-03-22 09:57:55 +00:00
|
|
|
controller: Controller,
|
2018-03-16 14:06:42 +00:00
|
|
|
bindings: {
|
|
|
|
ticket: '<'
|
|
|
|
}
|
|
|
|
});
|