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

39 lines
1.2 KiB
JavaScript
Raw Normal View History

import ngModule from '../module';
2020-03-18 07:35:59 +00:00
import Section from 'salix/components/section';
2018-10-30 13:57:22 +00:00
2020-03-18 07:35:59 +00:00
export default class Controller extends Section {
constructor($element, $) {
super($element, $);
2018-10-30 13:57:22 +00:00
this.ticketSelected = null;
this.weekdays = [
{id: 0, name: 'Monday'},
{id: 1, name: 'Tuesday'},
{id: 2, name: 'Wednesday'},
{id: 3, name: 'Thursday'},
{id: 4, name: 'Friday'},
{id: 5, name: 'Saturday'},
{id: 6, name: 'Sunday'}
];
}
onUpdate(ticketFk, field, value) {
const params = {ticketFk, [field]: value};
2020-04-25 09:50:04 +00:00
this.$http.patch('TicketWeeklies', params)
.then(() => this.vnApp.showSuccess(this.$t('Data saved!')));
2018-10-30 13:57:22 +00:00
}
onDeleteWeeklyAccept(ticketFk) {
return this.$http.delete(`TicketWeeklies/${ticketFk}`).then(() => {
this.vnApp.showSuccess(this.$t('Data saved!'));
const ticketIndex = this.$.model.data.findIndex(e => e.ticketFk == ticketFk);
this.$.model.remove(ticketIndex);
});
2018-10-30 13:57:22 +00:00
}
}
ngModule.vnComponent('vnTicketWeeklyIndex', {
2018-10-30 13:57:22 +00:00
template: require('./index.html'),
controller: Controller
});