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

99 lines
2.3 KiB
JavaScript
Raw Normal View History

2018-03-14 11:12:06 +00:00
import ngModule from '../module';
2020-11-23 12:41:51 +00:00
import Summary from 'salix/components/summary';
import './style.scss';
2018-03-14 11:12:06 +00:00
2020-11-23 12:41:51 +00:00
class Controller extends Summary {
2018-09-04 09:49:00 +00:00
get ticket() {
return this._ticket;
}
set ticket(value) {
this._ticket = value;
2020-11-09 13:52:25 +00:00
if (value) this.loadData();
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 '';
const address = this.summary.address;
const postcode = address.postalCode;
const province = address.province ? `(${address.province.name})` : '';
return `${address.street} - ${postcode} - ${address.city} ${province}`;
}
2020-11-09 13:52:25 +00:00
loadData() {
return this.$http.get(`Tickets/${this.ticket.id}/summary`).then(res => {
if (res && res.data)
this.summary = res.data;
});
}
2020-11-09 13:52:25 +00:00
reload() {
this.loadData()
.then(() => {
if (this.card)
this.card.reload();
// Refresh index model
if (this.model)
this.model.refresh();
});
}
2022-01-31 11:27:42 +00:00
get isOnTicketCard() {
const currentState = this.$state.current.name;
return currentState.startsWith('ticket.card');
2021-05-03 10:09:12 +00:00
}
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);
}
2023-09-13 17:48:58 +00:00
state(value) {
const params = {
ticketFk: 'id' in this.ticket ? this.ticket.id : this.$params.id,
code: value
};
this.$http.post(`Tickets/state`, params)
.then(() => {
if ('id' in this.$params) this.reload();
})
2020-11-09 13:52:25 +00:00
.then(() => {
this.vnApp.showSuccess(this.$t('Data saved!'));
});
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: '<',
model: '<?'
2019-03-04 15:34:41 +00:00
},
require: {
card: '?^vnTicketCard'
2018-03-14 11:12:06 +00:00
}
});