2018-04-26 14:41:08 +00:00
|
|
|
import ngModule from '../module';
|
2020-04-25 09:50:04 +00:00
|
|
|
import DescriptorPopover from 'salix/components/descriptor-popover';
|
2018-04-26 14:41:08 +00:00
|
|
|
|
2020-05-08 17:56:39 +00:00
|
|
|
class Controller extends DescriptorPopover {
|
|
|
|
show(parent, id, lineFk) {
|
|
|
|
super.show(parent, id);
|
|
|
|
this.lineFk = lineFk;
|
|
|
|
}
|
|
|
|
|
|
|
|
hide() {
|
|
|
|
super.hide();
|
|
|
|
this.lineFk = null;
|
|
|
|
}
|
|
|
|
}
|
2018-04-26 14:41:08 +00:00
|
|
|
|
2020-04-25 09:50:04 +00:00
|
|
|
ngModule.vnComponent('vnItemDescriptorPopover', {
|
|
|
|
slotTemplate: require('./index.html'),
|
2020-04-30 10:48:52 +00:00
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
warehouseFk: '<?',
|
2020-05-08 17:56:39 +00:00
|
|
|
lineFk: '<?'
|
2020-04-30 10:48:52 +00:00
|
|
|
}
|
2018-04-26 14:41:08 +00:00
|
|
|
});
|