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

80 lines
2.2 KiB
JavaScript
Raw Permalink 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();
2023-06-29 06:27:20 +00:00
this.isDataSaved = false;
2023-07-27 13:15:55 +00:00
this.checkeds = [];
}
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)
2021-01-18 07:55:57 +00:00
.then(res => {
this.$.typesModel.refresh();
return res;
})
2020-03-30 15:30:03 +00:00
.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())
2023-07-27 13:15:55 +00:00
.then(() => this.$.watcher.notifySaved());
2018-11-30 06:57:41 +00:00
}
2023-05-05 08:01:15 +00:00
2023-07-27 13:15:55 +00:00
createRefund() {
2023-07-31 09:06:19 +00:00
if (!this.checkeds.length) return;
2023-07-27 13:15:55 +00:00
2024-01-31 08:59:32 +00:00
const params = {servicesIds: this.checkeds, withWarehouse: false, negative: true};
2024-01-26 14:32:50 +00:00
const query = 'Sales/clone';
2023-07-27 13:15:55 +00:00
this.$http.post(query, params).then(res => {
2024-01-31 08:59:32 +00:00
const [refundTicket] = res.data;
2023-07-27 13:15:55 +00:00
this.vnApp.showSuccess(this.$t('The following refund ticket have been created', {
ticketId: refundTicket.id
}));
this.$state.go('ticket.card.sale', {id: refundTicket.id});
2023-05-09 17:49:16 +00:00
});
}
2023-07-27 13:15:55 +00:00
addChecked(id) {
2023-07-31 09:06:19 +00:00
if (this.checkeds.includes(id))
return this.checkeds = this.checkeds.filter(check => check != id);
2023-07-27 13:15:55 +00:00
this.checkeds.push(id);
2023-05-05 08:01:15 +00:00
}
2018-11-30 06:57:41 +00:00
}
ngModule.vnComponent('vnTicketService', {
2018-11-30 06:57:41 +00:00
template: require('./index.html'),
controller: Controller
});