salix/client/ticket/src/summary/index.js

64 lines
1.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 {
2018-05-29 12:33:29 +00:00
constructor($scope, $http) {
this.$scope = $scope;
2018-04-10 05:48:04 +00:00
this.$http = $http;
}
2018-09-04 09:49:00 +00:00
get ticket() {
return this._ticket;
}
set ticket(value) {
this._ticket = value;
if (!value) return;
2018-04-10 05:48:04 +00:00
2018-05-14 08:07:22 +00:00
this.$http.get(`/ticket/api/Tickets/${this.ticket.id}/summary`).then(res => {
2018-04-10 05:48:04 +00:00
if (res && res.data)
this.summary = res.data;
});
}
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}`;
}
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},
q: '{"warehouseFk": ${this.ticket.warehouseFk}}'
})`,
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();
}
2018-04-10 05:48:04 +00:00
}
2018-05-29 12:33:29 +00:00
Controller.$inject = ['$scope', '$http'];
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: '<'
}
});