salix/client/ticket/src/sale-tracking/index.js

39 lines
964 B
JavaScript
Raw Normal View History

import ngModule from '../module';
class Controller {
2018-07-17 06:44:31 +00:00
constructor($scope, $stateParams) {
this.$scope = $scope;
2018-07-17 06:44:31 +00:00
this.$stateParams = $stateParams;
}
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'
}
};
this.$scope.descriptor.itemFk = itemFk;
this.$scope.descriptor.parent = event.target;
this.$scope.descriptor.show();
}
onDescriptorLoad() {
this.$scope.popover.relocate();
}
}
2018-07-17 06:44:31 +00:00
Controller.$inject = ['$scope', '$stateParams'];
ngModule.component('vnTicketSaleTracking', {
template: require('./index.html'),
controller: Controller,
bindings: {
ticket: '<'
}
});