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

87 lines
1.9 KiB
JavaScript
Raw Normal View History

2018-03-14 11:12:06 +00:00
import ngModule from '../module';
2020-03-18 07:35:59 +00:00
import Section from 'salix/components/section';
import './style.scss';
2018-03-14 11:12:06 +00:00
2020-03-18 07:35:59 +00:00
class Controller extends Section {
2018-09-04 09:49:00 +00:00
get ticket() {
return this._ticket;
}
set ticket(value) {
this._ticket = value;
if (value) this.getSummary();
2018-04-10 05:48:04 +00:00
}
2018-05-29 12:33:29 +00:00
get formattedAddress() {
2020-01-13 06:42:41 +00:00
if (!this.summary) return '';
let address = this.summary.address;
let province = address.province ? `(${address.province.name})` : '';
return `${address.street} - ${address.city} ${province}`;
}
getSummary() {
this.$http.get(`Tickets/${this.ticket.id}/summary`).then(res => {
if (res && res.data)
this.summary = res.data;
});
}
2019-03-04 15:34:41 +00:00
get isEditable() {
try {
2020-06-23 11:40:49 +00:00
return !this.ticket.ticketState.state.alertLevel;
2019-03-04 15:34:41 +00:00
} catch (e) {}
return true;
}
2020-05-27 10:29:01 +00:00
showInvoiceOutDescriptor(event, refFk) {
if (!refFk) return;
this.$.invoiceOutDescriptor.show(event.target, this.summary.invoiceOut.id);
}
2019-03-04 15:34:41 +00:00
setOkState() {
let params = {};
2019-03-04 15:34:41 +00:00
2020-03-18 07:35:59 +00:00
if (this.$params.id)
params = {ticketFk: this.$params.id};
2019-03-04 15:34:41 +00:00
2020-03-18 07:35:59 +00:00
if (!this.$params.id)
params = {ticketFk: this.ticket.id};
params.code = 'OK';
2019-03-04 15:34:41 +00:00
this.$http.post(`TicketTrackings/changeState`, params).then(() => {
this.vnApp.showSuccess(this.$t('Data saved!'));
if (this.card)
this.card.reload();
else
this.getSummary();
2019-03-04 15:34:41 +00:00
});
}
getRequestState(state) {
switch (state) {
case null:
return 'New';
case false:
return 'Denied';
case true:
return 'Acepted';
}
}
2018-04-10 05:48:04 +00:00
}
ngModule.vnComponent('vnTicketSummary', {
template: require('./index.html'),
2018-04-10 05:48:04 +00:00
controller: Controller,
2018-03-14 11:12:06 +00:00
bindings: {
ticket: '<'
2019-03-04 15:34:41 +00:00
},
require: {
card: '?^vnTicketCard'
2018-03-14 11:12:06 +00:00
}
});