diff --git a/project_report/report/project_budget_amt_analysis.py b/project_report/report/project_budget_amt_analysis.py index a31a4f5..26077df 100755 --- a/project_report/report/project_budget_amt_analysis.py +++ b/project_report/report/project_budget_amt_analysis.py @@ -18,7 +18,7 @@ class BudgetAmtAnalysis(models.Model): #sub_project = fields.Many2one('project.project', string='Sub Project', readonly=True) partner_id = fields.Many2one('res.partner', string='Client', readonly=True) amount_type = fields.Char(string="Amount Type") - revenue = fields.Float("Revenue", digits=(16, 2), readonly=True, group_operator="sum") + revenue = fields.Float("Amount", digits=(16, 2), readonly=True, group_operator="sum") pricing_type = fields.Selection([ ('fixed_rate', 'Fixed rate'), ('employee_rate', 'Consultant rate')