From 97e0e6f5fce7b42414ecc410100f32337099cfac Mon Sep 17 00:00:00 2001 From: projectsodoo Date: Mon, 22 Feb 2021 19:16:06 +0530 Subject: [PATCH] Updated hours to timeline --- project_report/report/project_budget_hrs_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_report/report/project_budget_hrs_analysis.py b/project_report/report/project_budget_hrs_analysis.py index 0ca6060..b415a04 100755 --- a/project_report/report/project_budget_hrs_analysis.py +++ b/project_report/report/project_budget_hrs_analysis.py @@ -21,7 +21,7 @@ class BudgetHrsAnalysis(models.Model): partner_id = fields.Many2one('res.partner', string='Client', readonly=True) employee_id = fields.Many2one('hr.employee', string='Consultant', readonly=True) hours_type = fields.Char(string="Hours Type", readonly=True) - hours = fields.Float("Hours", digits=(16, 2), readonly=True, group_operator="sum") + hours = fields.Float("Timeline", digits=(16, 2), readonly=True, group_operator="sum") pricing_type = fields.Selection([ ('fixed_rate', 'Fixed rate'), ('employee_rate', 'Consultant rate')