From 3a0e59504318c7c3b1e16a7c2a0f9a50f71a9da0 Mon Sep 17 00:00:00 2001 From: prakash Date: Wed, 9 Mar 2022 18:37:51 +0530 Subject: [PATCH] Actual Revenue and Cost report label issue fixed --- project_report/report/project_budget_amt_analysis.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project_report/report/project_budget_amt_analysis.py b/project_report/report/project_budget_amt_analysis.py index f5b2b4a..f86bc77 100755 --- a/project_report/report/project_budget_amt_analysis.py +++ b/project_report/report/project_budget_amt_analysis.py @@ -63,7 +63,7 @@ class BudgetAmtAnalysis(models.Model): pro.date AS end_date, pro.partner_id AS partner_id, AAL.employee_id AS employee_id, - 'Actual Revenue' as amount_type, + 'Actual Cost' as amount_type, pro.pricing_type as pricing_type, pro.project_type as project_type, null::date AS timesheet_date, @@ -121,7 +121,7 @@ class BudgetAmtAnalysis(models.Model): pro.date AS end_date, pro.partner_id AS partner_id, AAL.employee_id AS employee_id, - 'Actual Cost' as amount_type, + 'Actual Revenue' as amount_type, pro.pricing_type as pricing_type, pro.project_type as project_type, AAL.date AS timesheet_date,