2018-08-30 06:50:03 +00:00
|
|
|
import ngModule from '../module';
|
2018-12-27 11:54:16 +00:00
|
|
|
import Component from 'core/lib/component';
|
2018-08-30 06:50:03 +00:00
|
|
|
import './style.scss';
|
|
|
|
|
|
|
|
class Controller extends Component {
|
2018-10-18 09:41:25 +00:00
|
|
|
constructor($element, $scope, $http, $timeout, $q) {
|
2018-08-30 06:50:03 +00:00
|
|
|
super($element, $scope);
|
2018-10-18 09:41:25 +00:00
|
|
|
this.$timeout = $timeout;
|
2018-08-30 06:50:03 +00:00
|
|
|
this.$http = $http;
|
2018-10-18 09:41:25 +00:00
|
|
|
this.$q = $q;
|
|
|
|
this.ticket = null;
|
2018-08-30 06:50:03 +00:00
|
|
|
}
|
|
|
|
|
2018-10-18 09:41:25 +00:00
|
|
|
set ticketFk(id) {
|
|
|
|
if (id == this._ticketFk) return;
|
2018-08-30 06:50:03 +00:00
|
|
|
|
2018-10-18 09:41:25 +00:00
|
|
|
this._ticketFk = id;
|
|
|
|
this.ticket = null;
|
|
|
|
this.getCard();
|
2018-08-30 06:50:03 +00:00
|
|
|
}
|
|
|
|
|
2018-10-18 09:41:25 +00:00
|
|
|
set ticket(value) {
|
|
|
|
this._ticket = value;
|
|
|
|
this.$timeout(() => this.$.popover.relocate());
|
|
|
|
}
|
|
|
|
|
|
|
|
get ticket() {
|
|
|
|
return this._ticket;
|
2018-08-30 06:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
set quicklinks(value = {}) {
|
|
|
|
this._quicklinks = Object.assign(value, this._quicklinks);
|
|
|
|
}
|
|
|
|
|
2018-10-18 09:41:25 +00:00
|
|
|
get quicklinks() {
|
|
|
|
return this._quicklinks;
|
2018-08-30 06:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
show() {
|
|
|
|
this.$.popover.parent = this.parent;
|
|
|
|
this.$.popover.show();
|
|
|
|
}
|
2018-10-18 09:41:25 +00:00
|
|
|
|
|
|
|
getCard() {
|
|
|
|
if (this.canceler)
|
|
|
|
this.canceler.resolve();
|
|
|
|
|
|
|
|
this.canceler = this.$q.defer();
|
|
|
|
|
|
|
|
let options = {timeout: this.canceler.promise};
|
|
|
|
|
|
|
|
let filter = {
|
|
|
|
include: [
|
2019-01-31 13:14:39 +00:00
|
|
|
{
|
|
|
|
relation: 'warehouse',
|
|
|
|
scope: {
|
|
|
|
fields: ['name']
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
relation: 'agencyMode',
|
|
|
|
scope: {
|
|
|
|
fields: ['name']
|
|
|
|
}
|
|
|
|
},
|
2018-10-18 09:41:25 +00:00
|
|
|
{
|
|
|
|
relation: 'client',
|
|
|
|
scope: {
|
|
|
|
fields: ['salesPersonFk', 'name', 'isActive', 'isFreezed', 'isTaxDataChecked'],
|
|
|
|
include: {
|
|
|
|
relation: 'salesPerson',
|
2019-01-31 13:14:39 +00:00
|
|
|
scope: {
|
|
|
|
fields: ['userFk'],
|
|
|
|
include: {
|
|
|
|
relation: 'user',
|
|
|
|
scope: {
|
|
|
|
fields: ['nickname']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-18 09:41:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2019-01-31 13:14:39 +00:00
|
|
|
relation: 'state',
|
2018-10-18 09:41:25 +00:00
|
|
|
scope: {
|
|
|
|
fields: ['stateFk'],
|
|
|
|
include: {
|
|
|
|
relation: 'state',
|
2019-01-31 13:14:39 +00:00
|
|
|
fields: ['id', 'name'],
|
2018-10-18 09:41:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
let json = encodeURIComponent(JSON.stringify(filter));
|
|
|
|
let query = `/ticket/api/Tickets/${this._ticketFk}?filter=${json}`;
|
|
|
|
this.$http.get(query, options).then(
|
|
|
|
response => {
|
|
|
|
this.ticket = response.data;
|
|
|
|
this.canceler = null;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2018-08-30 06:50:03 +00:00
|
|
|
}
|
2018-10-18 09:41:25 +00:00
|
|
|
Controller.$inject = ['$element', '$scope', '$http', '$timeout', '$q'];
|
2018-08-30 06:50:03 +00:00
|
|
|
|
|
|
|
ngModule.component('vnTicketDescriptorPopover', {
|
|
|
|
template: require('./index.html'),
|
2018-10-18 09:41:25 +00:00
|
|
|
controller: Controller,
|
2018-08-30 06:50:03 +00:00
|
|
|
bindings: {
|
|
|
|
ticketFk: '<',
|
|
|
|
quicklinks: '<'
|
2018-10-18 09:41:25 +00:00
|
|
|
}
|
2018-08-30 06:50:03 +00:00
|
|
|
});
|