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

101 lines
2.5 KiB
JavaScript
Raw Normal View History

2018-03-14 11:12:06 +00:00
import ngModule from '../module';
import './style.scss';
2018-03-14 11:12:06 +00:00
2018-04-10 05:48:04 +00:00
class Controller {
2019-03-04 15:34:41 +00:00
constructor($scope, $state, $http, vnApp, $translate) {
2018-05-29 12:33:29 +00:00
this.$scope = $scope;
2019-03-04 15:34:41 +00:00
this.vnApp = vnApp;
this.$translate = $translate;
2018-04-10 05:48:04 +00:00
this.$http = $http;
2019-03-04 15:34:41 +00:00
this.$state = $state;
2018-04-10 05:48:04 +00:00
}
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() {
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(`/ticket/api/Tickets/${this.ticket.id}/summary`).then(res => {
if (res && res.data)
this.summary = res.data;
});
}
2018-05-29 12:33:29 +00:00
showDescriptor(event, itemFk) {
2018-09-04 09:49:00 +00:00
this.quicklinks = {
btnThree: {
icon: 'icon-transaction',
state: `item.card.diary({
id: ${itemFk},
warehouseFk: ${this.ticket.warehouseFk},
ticketFk: ${this.ticket.id}
2018-09-04 09:49:00 +00:00
})`,
tooltip: 'Item diary'
}
};
2018-05-29 12:33:29 +00:00
this.$scope.descriptor.itemFk = itemFk;
this.$scope.descriptor.parent = event.target;
this.$scope.descriptor.show();
}
onDescriptorLoad() {
this.$scope.popover.relocate();
}
2019-03-04 15:34:41 +00:00
get isEditable() {
try {
return !this.ticket.state.state.alertLevel;
} catch (e) {}
return true;
}
setOkState() {
let params = {};
2019-03-04 15:34:41 +00:00
if (this.$state.params.id)
params = {ticketFk: this.$state.params.id};
2019-03-04 15:34:41 +00:00
if (!this.$state.params.id)
params = {ticketFk: this.ticket.id};
params.code = 'OK';
2019-03-04 15:34:41 +00:00
this.$http.post(`/ticket/api/TicketTrackings/changeState`, params).then(() => {
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
if (this.card)
this.card.reload();
else
this.getSummary();
2019-03-04 15:34:41 +00:00
});
}
2018-04-10 05:48:04 +00:00
}
2019-03-04 15:34:41 +00:00
Controller.$inject = ['$scope', '$state', '$http', 'vnApp', '$translate'];
2018-03-14 11:12:06 +00:00
ngModule.component('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
}
});