2018-07-03 13:00:33 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
|
|
|
|
class Controller {
|
2018-07-17 06:44:31 +00:00
|
|
|
constructor($scope, $stateParams) {
|
2019-02-15 11:39:21 +00:00
|
|
|
this.$ = $scope;
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$stateParams = $stateParams;
|
2018-07-03 13:00:33 +00:00
|
|
|
}
|
|
|
|
|
2019-02-15 11:39:21 +00:00
|
|
|
showItemDescriptor(event, itemFk) {
|
2018-09-04 09:49:00 +00:00
|
|
|
this.quicklinks = {
|
|
|
|
btnThree: {
|
|
|
|
icon: 'icon-transaction',
|
|
|
|
state: `item.card.diary({
|
|
|
|
id: ${itemFk},
|
2018-10-05 12:03:59 +00:00
|
|
|
warehouseFk: ${this.ticket.warehouseFk},
|
|
|
|
ticketFk: ${this.ticket.id}
|
2018-09-04 09:49:00 +00:00
|
|
|
})`,
|
2018-10-28 11:36:41 +00:00
|
|
|
tooltip: 'Item diary',
|
|
|
|
},
|
2018-09-04 09:49:00 +00:00
|
|
|
};
|
2019-02-15 11:39:21 +00:00
|
|
|
this.$.itemDescriptor.itemFk = itemFk;
|
|
|
|
this.$.itemDescriptor.parent = event.target;
|
|
|
|
this.$.itemDescriptor.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
showWorkerDescriptor(event, userId) {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopImmediatePropagation();
|
|
|
|
this.selectedWorker = userId;
|
|
|
|
this.$.workerDescriptor.parent = event.target;
|
|
|
|
this.$.workerDescriptor.show();
|
2018-07-03 13:00:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onDescriptorLoad() {
|
2019-02-15 11:39:21 +00:00
|
|
|
this.$.popover.relocate();
|
2018-07-03 13:00:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-17 06:44:31 +00:00
|
|
|
Controller.$inject = ['$scope', '$stateParams'];
|
2018-07-03 13:00:33 +00:00
|
|
|
|
|
|
|
ngModule.component('vnTicketSaleTracking', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
2018-10-28 11:36:41 +00:00
|
|
|
ticket: '<',
|
|
|
|
},
|
2018-07-03 13:00:33 +00:00
|
|
|
});
|