Actual Revenue and Cost report label issue fixed

This commit is contained in:
prakash 2022-03-09 18:37:51 +05:30
parent 6520e397fd
commit 3a0e595043
1 changed files with 2 additions and 2 deletions

View File

@ -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,