salix/modules/ticket/front/sale-checked/index.js

49 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-03-26 13:10:51 +00:00
import ngModule from '../module';
2020-03-18 07:35:59 +00:00
import Section from 'salix/components/section';
2018-03-26 13:10:51 +00:00
2020-03-18 07:35:59 +00:00
class Controller extends Section {
constructor($element, $) {
super($element, $);
2018-07-17 06:44:31 +00:00
this.filter = {
include: [{
2018-11-06 09:49:38 +00:00
relation: 'item'
2018-07-17 06:44:31 +00:00
},
{
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},
warehouseFk: ${this.ticket.warehouseFk},
ticketFk: ${this.ticket.id}
2018-09-04 09:49:00 +00:00
})`,
tooltip: 'Item diary'
}
};
2020-03-18 07:35:59 +00:00
this.$.descriptor.itemFk = itemFk;
this.$.descriptor.parent = event.target;
this.$.descriptor.show();
2018-05-29 12:33:29 +00:00
}
onDescriptorLoad() {
2020-03-18 07:35:59 +00:00
this.$.popover.relocate();
2018-05-29 12:33:29 +00:00
}
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
});