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

43 lines
1.1 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: [
{
relation: 'item'
}, {
relation: 'isChecked',
scope: {
fields: ['isChecked']
}
2018-07-17 06:44:31 +00:00
}
]
2018-07-17 06:44:31 +00:00
};
2018-03-26 13:10:51 +00:00
}
showItemDescriptor(event, sale) {
2020-06-08 09:05:17 +00:00
this.quicklinks = {
btnThree: {
icon: 'icon-transaction',
state: `item.card.diary({
id: ${sale.itemFk},
warehouseFk: ${this.ticket.warehouseFk},
lineFk: ${sale.id}
})`,
tooltip: 'Item diary'
}
};
this.$.itemDescriptor.show(event.target, sale.itemFk);
2020-06-08 09:05:17 +00:00
}
2018-03-26 13:10:51 +00:00
}
ngModule.vnComponent('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
});