import ngModule from '../module'; import Section from 'salix/components/section'; export default class Controller extends Section { constructor($element, $) { super($element, $); 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}; this.$http.patch('TicketWeeklies', params).then(() => { this.vnApp.showSuccess(this.$t('Data saved!')); }); } showClientDescriptor(event, clientFk) { this.$.clientDescriptor.clientFk = clientFk; this.$.clientDescriptor.parent = event.target; this.$.clientDescriptor.show(); this.stopEvent(event); } showTicketDescriptor(event, ticketFk) { this.$.ticketDescriptor.ticketFk = ticketFk; this.$.ticketDescriptor.parent = event.target; this.$.ticketDescriptor.show(); this.stopEvent(event); } showWorkerDescriptor(event, workerFk) { this.$.workerDescriptor.workerFk = workerFk; this.$.workerDescriptor.parent = event.target; this.$.workerDescriptor.show(); this.stopEvent(event); } deleteWeekly(event, ticketFk) { this.$.deleteWeekly.show(ticketFk); this.stopEvent(event); } 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); }); } } ngModule.component('vnTicketWeeklyIndex', { template: require('./index.html'), controller: Controller });