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';
|
2018-04-17 10:19:40 +00:00
|
|
|
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
|
|
|
|
2018-07-18 07:23:51 +00:00
|
|
|
get formattedAddress() {
|
2020-01-13 06:42:41 +00:00
|
|
|
if (!this.summary) return '';
|
2018-07-18 07:23:51 +00:00
|
|
|
|
2021-06-13 17:11:05 +00:00
|
|
|
const address = this.summary.address;
|
|
|
|
const postcode = address.postalCode;
|
|
|
|
const province = address.province ? `(${address.province.name})` : '';
|
2018-07-18 07:23:51 +00:00
|
|
|
|
2021-06-13 17:11:05 +00:00
|
|
|
return `${address.street} - ${postcode} - ${address.city} ${province}`;
|
2018-07-18 07:23:51 +00:00
|
|
|
}
|
|
|
|
|
2020-11-09 13:52:25 +00:00
|
|
|
loadData() {
|
|
|
|
return this.$http.get(`Tickets/${this.ticket.id}/summary`).then(res => {
|
2019-03-05 11:01:53 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2021-12-30 08:49:11 +00:00
|
|
|
changeState(value) {
|
|
|
|
const params = {
|
|
|
|
ticketFk: 'id' in this.ticket ? this.ticket.id : this.$params.id,
|
|
|
|
code: value
|
|
|
|
};
|
2019-03-04 15:34:41 +00:00
|
|
|
|
2020-11-09 13:52:25 +00:00
|
|
|
this.$http.post(`TicketTrackings/changeState`, params)
|
2021-02-03 16:01:43 +00:00
|
|
|
.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
|
|
|
}
|
2019-05-09 12:40:59 +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
|
|
|
}
|
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnTicketSummary', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-04-10 05:48:04 +00:00
|
|
|
controller: Controller,
|
2018-03-14 11:12:06 +00:00
|
|
|
bindings: {
|
2020-09-24 13:00:00 +00:00
|
|
|
ticket: '<',
|
|
|
|
model: '<?'
|
2019-03-04 15:34:41 +00:00
|
|
|
},
|
|
|
|
require: {
|
|
|
|
card: '?^vnTicketCard'
|
2018-03-14 11:12:06 +00:00
|
|
|
}
|
|
|
|
});
|