19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:31:00 +01:00
parent a1137a1456
commit e1d89e11e3
2789 changed files with 1093187 additions and 605897 deletions

View file

@ -1,13 +1,17 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from collections import defaultdict
from lxml import etree
from datetime import datetime, time
from statistics import mode
import re
from odoo import api, Command, fields, models, _, _lt
import pytz
from odoo import api, fields, models
from odoo.exceptions import UserError, AccessError, ValidationError
from odoo.osv import expression
from odoo.fields import Domain
from odoo.tools.translate import _
class AccountAnalyticLine(models.Model):
_inherit = 'account.analytic.line'
@ -17,21 +21,26 @@ class AccountAnalyticLine(models.Model):
return [
('employee_id', '=', employee_id),
('project_id', '!=', False),
('project_id.active', '=', True),
('project_id.allow_timesheets', '=', True)
]
@api.model
def _get_favorite_project_id(self, employee_id=False):
last_timesheet_ids = self.search(self._get_favorite_project_id_domain(employee_id), limit=5)
if len(last_timesheet_ids.project_id) == 1:
return last_timesheet_ids.project_id.id
return False
last_timesheets = self.search_fetch(
self._get_favorite_project_id_domain(employee_id), ['project_id'], limit=5
)
if not last_timesheets:
internal_project = self.env.company.internal_project_id
return internal_project.has_access('read') and internal_project.active and internal_project.allow_timesheets and internal_project.id
return mode([t.project_id.id for t in last_timesheets])
@api.model
def default_get(self, field_list):
result = super(AccountAnalyticLine, self).default_get(field_list)
if not self.env.context.get('default_employee_id') and 'employee_id' in field_list and result.get('user_id'):
def default_get(self, fields):
result = super().default_get(fields)
if not self.env.context.get('default_employee_id') and 'employee_id' in fields and result.get('user_id'):
result['employee_id'] = self.env['hr.employee'].search([('user_id', '=', result['user_id']), ('company_id', '=', result.get('company_id', self.env.company.id))], limit=1).id
if not self._context.get('default_project_id') and self._context.get('is_timesheet'):
if not self.env.context.get('default_project_id') and self.env.context.get('is_timesheet'):
employee_id = result.get('employee_id', self.env.context.get('default_employee_id', False))
favorite_project_id = self._get_favorite_project_id(employee_id)
if favorite_project_id:
@ -39,52 +48,81 @@ class AccountAnalyticLine(models.Model):
return result
def _domain_project_id(self):
domain = [('allow_timesheets', '=', True)]
if not self.user_has_groups('hr_timesheet.group_timesheet_manager'):
return expression.AND([domain,
['|', ('privacy_visibility', '!=', 'followers'), ('message_partner_ids', 'in', [self.env.user.partner_id.id])]
])
domain = Domain([('allow_timesheets', '=', True), ('is_template', '=', False)])
if not self.env.user.has_group('hr_timesheet.group_timesheet_manager'):
domain &= Domain('privacy_visibility', 'in', ['employees', 'portal']) | Domain('message_partner_ids', 'in', [self.env.user.partner_id.id])
return domain
def _domain_employee_id(self):
if not self.user_has_groups('hr_timesheet.group_hr_timesheet_approver'):
return [('user_id', '=', self.env.user.id)]
return []
domain = Domain('company_id', 'in', self.env.context.get('allowed_company_ids'))
if not self.env.user.has_group('hr_timesheet.group_hr_timesheet_approver'):
domain &= Domain('user_id', '=', self.env.user.id)
return domain
task_id = fields.Many2one(
'project.task', 'Task', index='btree_not_null',
compute='_compute_task_id', store=True, readonly=False,
domain="[('allow_timesheets', '=', True), ('project_id', '=?', project_id)]")
ancestor_task_id = fields.Many2one('project.task', related='task_id.ancestor_id', store=True, index='btree_not_null')
domain="[('allow_timesheets', '=', True), ('project_id', '=?', project_id), ('has_template_ancestor', '=', False)]")
parent_task_id = fields.Many2one('project.task', related='task_id.parent_id', store=True, index='btree_not_null')
project_id = fields.Many2one(
'project.project', 'Project', domain=_domain_project_id, index=True,
compute='_compute_project_id', store=True, readonly=False)
user_id = fields.Many2one(compute='_compute_user_id', store=True, readonly=False)
employee_id = fields.Many2one('hr.employee', "Employee", domain=_domain_employee_id, context={'active_test': False},
help="Define an 'hourly cost' on the employee to track the cost of their time.")
job_title = fields.Char(related='employee_id.job_title')
index=True, help="Define an 'hourly cost' on the employee to track the cost of their time.")
job_title = fields.Char(related='employee_id.job_title', export_string_translation=False)
department_id = fields.Many2one('hr.department', "Department", compute='_compute_department_id', store=True, compute_sudo=True)
manager_id = fields.Many2one('hr.employee', "Manager", related='employee_id.parent_id', store=True)
encoding_uom_id = fields.Many2one('uom.uom', compute='_compute_encoding_uom_id')
encoding_uom_id = fields.Many2one('uom.uom', compute='_compute_encoding_uom_id', export_string_translation=False)
partner_id = fields.Many2one(compute='_compute_partner_id', store=True, readonly=False)
readonly_timesheet = fields.Boolean(compute="_compute_readonly_timesheet", compute_sudo=True, export_string_translation=False)
milestone_id = fields.Many2one('project.milestone', related='task_id.milestone_id')
message_partner_ids = fields.Many2many('res.partner', compute='_compute_message_partner_ids', search='_search_message_partner_ids')
calendar_display_name = fields.Char(compute="_compute_calendar_display_name", export_string_translation=False)
def name_get(self):
result = super().name_get()
timesheets_read = self.env[self._name].search_read([('project_id', '!=', False), ('id', 'in', self.ids)], ['id', 'project_id', 'task_id'])
if not timesheets_read:
return result
def _get_display_name(project_id, task_id):
""" Get the display name of the timesheet based on the project and task
:param project_id: tuple containing the id and the display name of the project
:param task_id: tuple containing the id and the display name of the task if a task exists in the timesheet
otherwise False.
:returns: the display name of the timesheet
"""
if task_id:
return '%s - %s' % (project_id[1], task_id[1])
return project_id[1]
timesheet_dict = {res['id']: _get_display_name(res['project_id'], res['task_id']) for res in timesheets_read}
return list({**dict(result), **timesheet_dict}.items())
def _search_message_partner_ids(self, operator, value):
followed_ids_by_model = dict(self.env['mail.followers']._read_group([
('partner_id', operator, value),
('res_model', 'in', ('project.project', 'project.task')),
], ['res_model'], ['res_id:array_agg']))
if not followed_ids_by_model:
return Domain.FALSE
domain = Domain.FALSE
if project_ids := followed_ids_by_model.get('project.project'):
domain |= Domain('project_id', 'in', project_ids)
if task_ids := followed_ids_by_model.get('project.task'):
domain |= Domain('task_id', 'in', task_ids)
return domain
@api.depends('project_id.message_partner_ids', 'task_id.message_partner_ids')
def _compute_message_partner_ids(self):
for line in self:
line.message_partner_ids = line.task_id.message_partner_ids | line.project_id.message_partner_ids
@api.depends('project_id', 'task_id')
def _compute_display_name(self):
analytic_line_with_project = self.filtered('project_id')
super(AccountAnalyticLine, self - analytic_line_with_project)._compute_display_name()
for analytic_line in analytic_line_with_project:
if analytic_line.task_id:
analytic_line.display_name = f"{analytic_line.project_id.sudo().display_name} - {analytic_line.task_id.sudo().display_name}"
else:
analytic_line.display_name = analytic_line.project_id.display_name
def _is_readonly(self):
self.ensure_one()
# is overridden in other timesheet related modules
return False
def _compute_readonly_timesheet(self):
# Since the mrp_module gives write access to portal user on timesheet, we check that the user is an internal one before giving the write access.
# It is not supposed to be needed, since portal user are not supposed to have access to the views using this field, but better be safe than sorry
if not self.env.user.has_group('base.group_user'):
self.readonly_timesheet = True
else:
readonly_timesheets = self.filtered(lambda timesheet: timesheet._is_readonly())
readonly_timesheets.readonly_timesheet = True
(self - readonly_timesheets).readonly_timesheet = False
def _compute_encoding_uom_id(self):
for analytic_line in self:
@ -92,11 +130,12 @@ class AccountAnalyticLine(models.Model):
@api.depends('task_id.partner_id', 'project_id.partner_id')
def _compute_partner_id(self):
super()._compute_partner_id()
for timesheet in self:
if timesheet.project_id:
timesheet.partner_id = timesheet.task_id.partner_id or timesheet.project_id.partner_id
@api.depends('task_id', 'task_id.project_id')
@api.depends('task_id.project_id')
def _compute_project_id(self):
for line in self:
if not line.task_id.project_id or line.project_id == line.task_id.project_id:
@ -105,8 +144,7 @@ class AccountAnalyticLine(models.Model):
@api.depends('project_id')
def _compute_task_id(self):
for line in self.filtered(lambda line: not line.project_id):
line.task_id = False
self.filtered(lambda t: not t.project_id).task_id = False
@api.onchange('project_id')
def _onchange_project_id(self):
@ -116,7 +154,7 @@ class AccountAnalyticLine(models.Model):
if self.project_id != self.task_id.project_id:
self.task_id = False
@api.depends('employee_id')
@api.depends('employee_id.user_id')
def _compute_user_id(self):
for line in self:
line.user_id = line.employee_id.user_id if line.employee_id else self._default_user()
@ -126,28 +164,115 @@ class AccountAnalyticLine(models.Model):
for line in self:
line.department_id = line.employee_id.department_id
def _compute_calendar_display_name(self):
companies = self.company_id
encoding_in_days_per_company = dict(zip(companies, [company.timesheet_encode_uom_id == self.env.ref('uom.product_uom_day') for company in companies]))
for line in self:
if not line.project_id:
line.calendar_display_name = ""
continue
if encoding_in_days_per_company[line.company_id]:
days = line._get_timesheet_time_day()
if days == int(days):
days = int(days)
line.calendar_display_name = self.env._(
"%(project_name)s (%(days)sd)",
project_name=line.project_id.display_name,
days=days,
)
else:
minutes = round(line.unit_amount * 60)
hours, minutes = divmod(abs(round(minutes)), 60)
if minutes:
line.calendar_display_name = self.env._(
"%(project_name)s (%(sign)s%(hours)sh%(minutes)s)",
project_name=line.project_id.display_name,
sign='-' if line.unit_amount < 0 else '',
hours=hours,
minutes=minutes,
)
else:
line.calendar_display_name = self.env._(
"%(project_name)s (%(sign)s%(hours)sh)",
project_name=line.project_id.display_name,
sign='-' if line.unit_amount < 0 else '',
hours=hours,
)
def _check_can_write(self, values):
# If it's a basic user then check if the timesheet is his own.
if (
not (self.env.user.has_group('hr_timesheet.group_hr_timesheet_approver') or self.env.su)
and any(analytic_line.user_id != self.env.user for analytic_line in self)
):
raise AccessError(_("You cannot access timesheets that are not yours."))
def _check_can_create(self):
# override in other modules to check current user has create access
pass
@api.model_create_multi
def create(self, vals_list):
user_timezone = self.env.tz
# Before creating a timesheet, we need to put a valid employee_id in the vals
default_user_id = self._default_user()
user_ids = []
employee_ids = []
# If batch creating from the calendar view, prefetch all employees to avoid fetching them one by one in the loop
if self.env.context.get('timesheet_calendar'):
self.env['hr.employee'].browse([vals.get('employee_id') for vals in vals_list])
# 1/ Collect the user_ids and employee_ids from each timesheet vals
for vals in vals_list:
vals.update(self._timesheet_preprocess(vals))
if not vals.get('project_id'):
skipped_vals = 0
valid_vals = 0
for vals in vals_list[:]:
if self.env.context.get('timesheet_calendar'):
if not 'employee_id' in vals:
vals['employee_id'] = self.env.user.employee_id.id
employee = self.env['hr.employee'].browse(vals['employee_id'])
date = fields.Date.from_string(vals.get('date', fields.Date.to_string(fields.Date.context_today(self))))
if not any(employee.resource_id._get_valid_work_intervals(
datetime.combine(date, time.min, tzinfo=user_timezone),
datetime.combine(date, time.max, tzinfo=user_timezone),
)[0][employee.resource_id.id]):
vals_list.remove(vals)
skipped_vals += 1
continue
task = self.env['project.task'].sudo().browse(vals.get('task_id'))
project = self.env['project.project'].sudo().browse(vals.get('project_id'))
if not (task or project):
# It is not a timesheet
continue
elif task:
if not task.project_id:
raise ValidationError(_('Timesheets cannot be created on a private task.'))
if not project:
vals['project_id'] = task.project_id.id
company = task.company_id or project.company_id or self.env['res.company'].browse(vals.get('company_id'))
vals['company_id'] = company.id
vals.update({
fname: account_id
for fname, account_id in self._timesheet_preprocess_get_accounts(vals).items()
if fname not in vals
})
if not vals.get('product_uom_id'):
vals['product_uom_id'] = company.project_time_mode_id.id
if not vals.get('name'):
vals['name'] = '/'
employee_id = vals.get('employee_id')
user_id = vals.get('user_id', default_user_id)
employee_id = vals.get('employee_id', self.env.context.get('default_employee_id', False))
if employee_id and employee_id not in employee_ids:
employee_ids.append(employee_id)
elif user_id not in user_ids:
user_ids.append(user_id)
else:
user_id = vals.get('user_id', default_user_id)
if user_id not in user_ids:
user_ids.append(user_id)
valid_vals += 1
# 2/ Search all employees related to user_ids and employee_ids, in the selected companies
employees = self.env['hr.employee'].sudo().search([
HrEmployee_sudo = self.env['hr.employee'].sudo()
employees = HrEmployee_sudo.search([
'&', '|', ('user_id', 'in', user_ids), ('id', 'in', employee_ids), ('company_id', 'in', self.env.companies.ids)
])
@ -166,17 +291,23 @@ class AccountAnalyticLine(models.Model):
employee_id_per_company_per_user[employee.user_id.id][employee.company_id.id] = employee.id
# 4/ Put valid employee_id in each vals
error_msg = _lt('Timesheets must be created with an active employee in the selected companies.')
error_msg = _('Timesheets must be created with an active employee in the selected companies.')
for vals in vals_list:
if not vals.get('project_id'):
continue
employee_in_id = vals.get('employee_id')
employee_in_id = vals.get('employee_id', self.env.context.get('default_employee_id', False))
if employee_in_id:
company = False
if not vals.get('company_id'):
company = HrEmployee_sudo.browse(employee_in_id).company_id
vals['company_id'] = company.id
if not vals.get('product_uom_id'):
vals['product_uom_id'] = company.project_time_mode_id.id if company else self.env['res.company'].browse(vals.get('company_id', self.env.company.id)).project_time_mode_id.id
if employee_in_id in valid_employee_per_id:
vals['user_id'] = valid_employee_per_id[employee_in_id].sudo().user_id.id # (A) OK
continue
else:
raise ValidationError(error_msg) # (C) KO
raise ValidationError(error_msg) # (C) KO
else:
user_id = vals.get('user_id', default_user_id) # (B)...
@ -185,137 +316,122 @@ class AccountAnalyticLine(models.Model):
employee_out_id = False
if employee_per_company:
company_id = list(employee_per_company)[0] if len(employee_per_company) == 1\
else vals.get('company_id', self.env.company.id)
else vals.get('company_id') or self.env.company.id
employee_out_id = employee_per_company.get(company_id, False)
if employee_out_id:
vals['employee_id'] = employee_out_id
vals['user_id'] = user_id
company = False
if not vals.get('company_id'):
company = HrEmployee_sudo.browse(employee_out_id).company_id
vals['company_id'] = company.id
if not vals.get('product_uom_id'):
vals['product_uom_id'] = company.project_time_mode_id.id if company else self.env['res.company'].browse(vals.get('company_id', self.env.company.id)).project_time_mode_id.id
else: # ...and raise an error if they fail
raise ValidationError(error_msg)
# 5/ Finally, create the timesheets
lines = super(AccountAnalyticLine, self).create(vals_list)
lines = super().create(vals_list)
lines._check_can_create()
for line, values in zip(lines, vals_list):
if line.project_id: # applied only for timesheet
line._timesheet_postprocess(values)
if self.env.context.get('timesheet_calendar'):
if skipped_vals:
type = "danger"
if valid_vals:
message = self.env._("Some timesheets were not created: employees arent working on the selected days")
else:
message = self.env._("No timesheets created: employees arent working on the selected days")
else:
type = "success"
message = self.env._("Timesheets successfully created")
self.env.user._bus_send('simple_notification', {
"type": type,
"message": message,
})
return lines
def write(self, values):
# If it's a basic user then check if the timesheet is his own.
if not (self.user_has_groups('hr_timesheet.group_hr_timesheet_approver') or self.env.su) and any(self.env.user.id != analytic_line.user_id.id for analytic_line in self):
raise AccessError(_("You cannot access timesheets that are not yours."))
def write(self, vals):
values = vals
self._check_can_write(values)
task = self.env['project.task'].sudo().browse(values.get('task_id'))
project = self.env['project.project'].sudo().browse(values.get('project_id'))
if task and not task.project_id:
raise ValidationError(_('Timesheets cannot be created on a private task.'))
if project or task:
values['company_id'] = task.company_id.id or project.company_id.id
values.update({
fname: account_id
for fname, account_id in self._timesheet_preprocess_get_accounts(values).items()
if fname not in values
})
values = self._timesheet_preprocess(values)
if values.get('employee_id'):
employee = self.env['hr.employee'].browse(values['employee_id'])
if not employee.active:
raise UserError(_('You cannot set an archived employee to the existing timesheets.'))
raise UserError(_('You cannot set an archived employee on existing timesheets.'))
if 'name' in values and not values.get('name'):
values['name'] = '/'
result = super(AccountAnalyticLine, self).write(values)
if 'company_id' in values and not values.get('company_id'):
del values['company_id']
result = super().write(values)
# applied only for timesheet
self.filtered(lambda t: t.project_id)._timesheet_postprocess(values)
return result
@api.model
def _get_view_cache_key(self, view_id=None, view_type='form', **options):
"""The override of _get_view changing the time field labels according to the company timesheet encoding UOM
makes the view cache dependent on the company timesheet encoding uom"""
key = super()._get_view_cache_key(view_id, view_type, **options)
return key + (self.env.company.timesheet_encode_uom_id,)
def get_views(self, views, options=None):
res = super().get_views(views, options)
if options and options.get('toolbar'):
wip_report_id = None
@api.model
def _get_view(self, view_id=None, view_type='form', **options):
""" Set the correct label for `unit_amount`, depending on company UoM """
arch, view = super()._get_view(view_id, view_type, **options)
arch = self.sudo()._apply_timesheet_label(arch, view_type=view_type)
return arch, view
def get_wip_report_id():
return self.env['ir.model.data']._xmlid_to_res_id("mrp_account.wip_report", raise_if_not_found=False)
@api.model
def _apply_timesheet_label(self, view_node, view_type='form'):
doc = view_node
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
# custom inheretied view stored in database. Even if normally, no xpath can be done on
# 'string' attribute.
for node in doc.xpath("//field[@name='unit_amount'][@widget='timesheet_uom'][not(@string)]"):
node.set('string', _('%s Spent') % (re.sub(r'[\(\)]', '', encoding_uom.name or '')))
return doc
@api.model
def _apply_time_label(self, view_node, related_model):
doc = view_node
Model = self.env[related_model]
# Just fetch the name of the uom in `timesheet_encode_uom_id` of the current company
encoding_uom_name = self.env.company.timesheet_encode_uom_id.with_context(prefetch_fields=False).sudo().name
for node in doc.xpath("//field[@widget='timesheet_uom'][not(@string)] | //field[@widget='timesheet_uom_no_toggle'][not(@string)]"):
name_with_uom = re.sub(_('Hours') + "|Hours", encoding_uom_name or '', Model._fields[node.get('name')]._description_string(self.env), flags=re.IGNORECASE)
node.set('string', name_with_uom)
return doc
for view_data in res['views'].values():
print_data_list = view_data.get('toolbar', {}).get('print')
if print_data_list:
if wip_report_id is None and re.search(r'widget="timesheet_uom(\w)*"', view_data['arch']):
wip_report_id = get_wip_report_id()
if wip_report_id:
view_data['toolbar']['print'] = [print_data for print_data in print_data_list if print_data['id'] != wip_report_id]
return res
def _timesheet_get_portal_domain(self):
if self.env.user.has_group('hr_timesheet.group_hr_timesheet_user'):
# Then, he is internal user, and we take the domain for this current user
return self.env['ir.rule']._compute_domain(self._name)
return [
'|',
'&',
'|',
('task_id.project_id.message_partner_ids', 'child_of', [self.env.user.partner_id.commercial_partner_id.id]),
('task_id.message_partner_ids', 'child_of', [self.env.user.partner_id.commercial_partner_id.id]),
('task_id.project_id.privacy_visibility', '=', 'portal'),
'&',
('task_id', '=', False),
'&',
('project_id.message_partner_ids', 'child_of', [self.env.user.partner_id.commercial_partner_id.id]),
('project_id.privacy_visibility', '=', 'portal')
]
return (
(
Domain('message_partner_ids', 'child_of', [self.env.user.partner_id.commercial_partner_id.id])
| Domain('partner_id', 'child_of', [self.env.user.partner_id.commercial_partner_id.id])
)
& Domain('project_id.privacy_visibility', 'in', ['invited_users', 'portal'])
)
def _timesheet_preprocess(self, vals):
""" Deduce other field values from the one given.
Overrride this to compute on the fly some field that can not be computed fields.
:param values: dict values for `create`or `write`.
"""
project = self.env['project.project'].browse(vals.get('project_id', False))
task = self.env['project.task'].browse(vals.get('task_id', False))
# task implies project
if task and not project:
project = task.project_id
if not project:
raise ValidationError(_('You cannot create a timesheet on a private task.'))
vals['project_id'] = project.id
# task implies analytic account and tags
if task and not vals.get('account_id'):
task_analytic_account_id = task._get_task_analytic_account_id()
vals['account_id'] = task_analytic_account_id.id
vals['company_id'] = task_analytic_account_id.company_id.id or task.company_id.id
if not task_analytic_account_id.active:
raise UserError(_('You cannot add timesheets to a project or a task linked to an inactive analytic account.'))
# project implies analytic account
elif project and not vals.get('account_id'):
vals['account_id'] = project.analytic_account_id.id
vals['company_id'] = project.analytic_account_id.company_id.id or project.company_id.id
if not project.analytic_account_id.active:
raise UserError(_('You cannot add timesheets to a project linked to an inactive analytic account.'))
# force customer partner, from the task or the project
if project and not vals.get('partner_id'):
partner_id = task.partner_id.id if task else project.partner_id.id
if partner_id:
vals['partner_id'] = partner_id
# set timesheet UoM from the AA company (AA implies uom)
if not vals.get('product_uom_id') and all(v in vals for v in ['account_id', 'project_id']): # project_id required to check this is timesheet flow
analytic_account = self.env['account.analytic.account'].sudo().browse(vals['account_id'])
uom_id = analytic_account.company_id.project_time_mode_id.id
if not uom_id:
company_id = vals.get('company_id', False)
if not company_id:
project = self.env['project.project'].browse(vals.get('project_id'))
company_id = project.analytic_account_id.company_id.id or project.company_id.id
uom_id = self.env['res.company'].browse(company_id).project_time_mode_id.id
vals['product_uom_id'] = uom_id
return vals
def _timesheet_preprocess_get_accounts(self, vals):
project = self.env['project.project'].sudo().browse(vals.get('project_id'))
if not project:
return {}
company = self.env['res.company'].browse(vals.get('company_id'))
mandatory_plans = [plan for plan in self._get_mandatory_plans(company, business_domain='timesheet') if plan['column_name'] != 'account_id']
missing_plan_names = [plan['name'] for plan in mandatory_plans if not project[plan['column_name']]]
if missing_plan_names:
raise ValidationError(_(
"'%(missing_plan_names)s' analytic plan(s) required on the project '%(project_name)s' linked to the timesheet.",
missing_plan_names=missing_plan_names,
project_name=project.name,
))
return {
fname: project[fname].id
for fname in self._get_plan_fnames()
}
def _timesheet_postprocess(self, values):
""" Hook to update record one by one according to the values of a `write` or a `create`. """
@ -338,6 +454,17 @@ class AccountAnalyticLine(models.Model):
# (re)compute the amount (depending on unit_amount, employee_id for the cost, and account_id for currency)
if any(field_name in values for field_name in ['unit_amount', 'employee_id', 'account_id']):
for timesheet in sudo_self:
if not timesheet.account_id.active:
project_plan, _other_plans = self.env['account.analytic.plan']._get_all_plans()
raise ValidationError(_(
"Timesheets must be created with at least an active analytic account defined in the plan '%(plan_name)s'.",
plan_name=project_plan.name
))
accounts = timesheet._get_analytic_accounts()
companies = timesheet.company_id | accounts.company_id | timesheet.task_id.company_id | timesheet.project_id.company_id
if len(companies) > 1:
raise ValidationError(_('The project, the task and the analytic accounts of the timesheet must belong to the same company.'))
cost = timesheet._hourly_cost()
amount = -timesheet.unit_amount * cost
amount_converted = timesheet.employee_id.currency_id._convert(
@ -347,6 +474,11 @@ class AccountAnalyticLine(models.Model):
})
return result
def _split_amount_fname(self):
# split the quantity instead of the amount, since the amount is postprocessed
# based on the quantity
return 'unit_amount' if self.project_id else super()._split_amount_fname()
def _is_timesheet_encode_uom_day(self):
company_uom = self.env.company.timesheet_encode_uom_id
return company_uom == self.env.ref('uom.product_uom_day')
@ -382,9 +514,7 @@ class AccountAnalyticLine(models.Model):
if not uom_hours:
uom_hours = self.env['uom.uom'].create({
'name': "Hours",
'category_id': self.env.ref('uom.uom_categ_wtime').id,
'factor': 8,
'uom_type': "smaller",
'relative_factor': 1,
})
self.env['ir.model.data'].create({
'name': 'product_uom_hour',
@ -393,3 +523,33 @@ class AccountAnalyticLine(models.Model):
'res_id': uom_hours.id,
'noupdate': True,
})
@api.model
def _show_portal_timesheets(self):
"""
Determine if we show timesheet information in the portal. Meant to be overriden in website_timesheet.
"""
return True
def action_open_timesheet_view_portal(self):
self.ensure_one()
return {
'type': 'ir.actions.act_window',
'res_id': self.id,
'res_model': 'account.analytic.line',
'views': [(self.env.ref('hr_timesheet.timesheet_view_form_portal_user').id, 'form')],
'context': self.env.context,
}
@api.model
def get_unusual_days(self, date_from, date_to=None):
return self.env.user.employee_id._get_unusual_days(date_from, date_to)
@api.model
def get_import_templates(self):
if self.env.context.get('is_timesheet'):
return [{
'label': _('Import Template for Timesheets'),
'template': '/hr_timesheet/static/xls/timesheets_import_template.xlsx',
}]
return []