Skip to content
Snippets Groups Projects
Commit e6399376 authored by Tommy (tong)'s avatar Tommy (tong)
Browse files

[IMP] hr_work_entry: allow change initial date to view work entries


- Add a new variable to view the initial date in calendar view.

closes odoo/odoo#112481

Related: odoo/enterprise#37002
Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
parent 7ec6ae38
No related branches found
No related tags found
No related merge requests found
......@@ -6,13 +6,16 @@ from odoo import models, _
class HrEmployee(models.Model):
_inherit = 'hr.employee'
def action_open_work_entries(self):
def action_open_work_entries(self, initial_date=False):
self.ensure_one()
ctx = {'default_employee_id': self.id}
if initial_date:
ctx['initial_date'] = initial_date
return {
'type': 'ir.actions.act_window',
'name': _('%s work entries', self.display_name),
'view_mode': 'calendar,tree,form',
'res_model': 'hr.work.entry',
'context': {'default_employee_id': self.id},
'context': ctx,
'domain': [('employee_id', '=', self.id)],
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment