salix/modules/ticket/front/services/index.js

54 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-11-30 06:57:41 +00:00
import ngModule from '../module';
2020-03-18 07:35:59 +00:00
import Section from 'salix/components/section';
import UserError from 'core/lib/user-error';
2018-11-30 06:57:41 +00:00
2020-03-18 07:35:59 +00:00
class Controller extends Section {
$onInit() {
2020-03-18 07:35:59 +00:00
this.services = [];
this.getDefaultTaxClass();
}
getDefaultTaxClass() {
2019-11-11 15:32:03 +00:00
let filter = {
where: {code: 'G'}
};
this.$http.get('TaxClasses/findOne', {filter})
.then(res => this.defaultTaxClass = res.data);
2018-11-30 06:57:41 +00:00
}
add() {
2020-03-30 15:30:03 +00:00
this.$.model.insert({
taxClassFk: this.defaultTaxClass.id,
quantity: 1,
ticketFk: this.$params.id
});
}
2020-03-30 15:30:03 +00:00
onNewServiceTypeClick(service, event) {
2019-10-18 19:36:30 +00:00
event.preventDefault();
2020-03-30 15:30:03 +00:00
this.$.newServiceType = {};
this.$.newServiceTypeDialog.show(service);
}
2020-03-30 15:30:03 +00:00
onNewServiceTypeAccept(service) {
if (!this.$.newServiceType.name)
throw new UserError(`Name can't be empty`);
2020-03-30 15:30:03 +00:00
return this.$http.post(`TicketServiceTypes`, this.$.newServiceType)
.then(res => service.ticketServiceTypeFk = res.data.id);
}
2018-11-30 06:57:41 +00:00
onSubmit() {
2020-03-18 07:35:59 +00:00
this.$.watcher.check();
2020-03-30 15:30:03 +00:00
this.$.model.save()
.then(() => this.$.model.refresh())
.then(() => this.$.watcher.notifySaved());
2018-11-30 06:57:41 +00:00
}
}
ngModule.component('vnTicketService', {
template: require('./index.html'),
controller: Controller
});