Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
1 Vastaa
3946 Näkymät

In which module , can I write controller to fetch hr_employee data. There is no hr_employee module. The data of hr.employee is present across different modules related to hr. 

Avatar
Hylkää
Paras vastaus

Hi,

Please add the hr module in the dependents list of the manifest file, and after you need to create a controller like


from odoo import http, fields
from odoo.http import request


class ControllerClassName(http.Controller):

@http.route('/route', auth='user', type='json')
def fucntion_name(self):
total_employees = request.env['hr.employee'].search_count(
[('active', '=', True)])
//You can search records based on the given methods and after you can add in the values dict
values = {
'total_employees': total_employees,
}
return {
'html': request.env.ref('module_name.panel_template')._render({
'object': request.env['hr.employee'],
'values': values
})
}
 
// the panel_template I used as a dashboard view, you can render the records in this way

Hope it helps

Avatar
Hylkää
Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
2
huhtik. 22
10718
1
syysk. 24
1408
1
jouluk. 21
3670
2
jouluk. 23
19581
0
maalisk. 15
4003