# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from collections import defaultdict from odoo.http import request from odoo.osv import expression from odoo.addons.project.controllers.portal import CustomerPortal class ProjectCustomerPortal(CustomerPortal): def _task_get_page_view_values(self, task, access_token, **kwargs): values = super(ProjectCustomerPortal, self)._task_get_page_view_values(task, access_token, **kwargs) domain = request.env['account.analytic.line']._timesheet_get_portal_domain() task_domain = expression.AND([domain, [('task_id', '=', task.id)]]) subtask_domain = expression.AND([domain, [('task_id', 'in', task.child_ids.ids)]]) timesheets = request.env['account.analytic.line'].sudo().search(task_domain) subtasks_timesheets = request.env['account.analytic.line'].sudo().search(subtask_domain) timesheets_by_subtask = defaultdict(lambda: request.env['account.analytic.line'].sudo()) for timesheet in subtasks_timesheets: timesheets_by_subtask[timesheet.task_id] |= timesheet values['timesheets'] = timesheets values['timesheets_by_subtask'] = timesheets_by_subtask values['is_uom_day'] = request.env['account.analytic.line']._is_timesheet_encode_uom_day() return values