odoo/addons/hr_recruitment/static/src/js/job_position.js

13 lines
339 B
JavaScript

openerp.hr_recruitment = function (openerp) {
openerp.web_kanban.KanbanRecord.include({
on_card_clicked: function() {
if (this.view.dataset.model === 'hr.job') {
this.$('.oe_applications a').first().click();
} else {
this._super.apply(this, arguments);
}
},
});
}