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

66 lines
1.8 KiB
JavaScript
Raw Normal View History

2018-03-26 13:10:51 +00:00
import ngModule from '../module';
2018-07-17 06:44:31 +00:00
class Controller {
constructor($scope, $stateParams) {
2018-05-29 12:33:29 +00:00
this.$scope = $scope;
2018-07-17 06:44:31 +00:00
this.$stateParams = $stateParams;
this.filter = {
include: [{
relation: 'item',
scope: {
include: {
relation: 'tags',
scope: {
fields: ['tagFk', 'value'],
include: {
relation: 'tag',
scope: {
fields: ['name']
}
},
limit: 6
}
},
fields: ['itemFk', 'name']
}
},
{
relation: 'isChecked',
scope: {
fields: ['isChecked']
}
}]
};
2018-03-26 13:10:51 +00:00
}
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-03-26 13:10:51 +00:00
}
2018-07-17 06:44:31 +00:00
Controller.$inject = ['$scope', '$stateParams'];
2018-03-26 13:10:51 +00:00
ngModule.component('vnTicketSaleChecked', {
template: require('./index.html'),
2018-09-04 09:49:00 +00:00
controller: Controller,
bindings: {
ticket: '<'
}
2018-03-26 13:10:51 +00:00
});