Skip to content
Snippets Groups Projects
Commit 897655f0 authored by koz-odoo's avatar koz-odoo Committed by Barad Mahendra
Browse files

[IMP] hr_timesheet: Add argument so method can be override by other module

Currently, method _apply_timesheet_label will add label on field
unit_amount with widget timesheet_uom but the widget on this
field is changed in another module as timesheet_uom_timer so it will
not work when that module is installed.

So in this method pass the view_type as argument so it can be easily
override in another module based on view_type.

closes odoo/odoo#57838

Taskid: 2287390
Related: https://github.com/odoo/enterprise/pull/11884


Related: odoo/enterprise#13276
X-original-commit: 6ce434b6d6ab686c91c111d2f86503176fec6517
Signed-off-by: default avatarYannick Tivisse (yti) <yti@odoo.com>
parent 9c53d4f2
No related branches found
No related tags found
No related merge requests found
......@@ -109,11 +109,11 @@ class AccountAnalyticLine(models.Model):
def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False):
""" Set the correct label for `unit_amount`, depending on company UoM """
result = super(AccountAnalyticLine, self).fields_view_get(view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu)
result['arch'] = self._apply_timesheet_label(result['arch'])
result['arch'] = self._apply_timesheet_label(result['arch'], view_type=view_type)
return result
@api.model
def _apply_timesheet_label(self, view_arch):
def _apply_timesheet_label(self, view_arch, view_type='form'):
doc = etree.XML(view_arch)
encoding_uom = self.env.company.timesheet_encode_uom_id
# Here, we select only the unit_amount field having no string set to give priority to
......
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