21 lines
788 B
Python
21 lines
788 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import models, _
|
||
|
from odoo.addons.http_routing.models.ir_http import url_for
|
||
|
|
||
|
|
||
|
class Website(models.Model):
|
||
|
_inherit = "website"
|
||
|
|
||
|
def get_suggested_controllers(self):
|
||
|
suggested_controllers = super(Website, self).get_suggested_controllers()
|
||
|
suggested_controllers.append((_('Jobs'), url_for('/jobs'), 'website_hr_recruitment'))
|
||
|
return suggested_controllers
|
||
|
|
||
|
def _search_get_details(self, search_type, order, options):
|
||
|
result = super()._search_get_details(search_type, order, options)
|
||
|
if search_type in ['jobs', 'all']:
|
||
|
result.append(self.env['hr.job']._search_get_detail(self, order, options))
|
||
|
return result
|