diff --git a/project_report/report/project_budget_amt_analysis.py b/project_report/report/project_budget_amt_analysis.py index 5e4bcfc..70b411c 100755 --- a/project_report/report/project_budget_amt_analysis.py +++ b/project_report/report/project_budget_amt_analysis.py @@ -52,7 +52,7 @@ class BudgetAmtAnalysis(models.Model): pro.pricing_type as pricing_type, pro.project_type as project_type, null::date AS timesheet_date, - null::timestamp with time zone AS timesheet_sdatetime, + null::timestamp AS timesheet_sdatetime, pro_emp.cost AS revenue FROM project_project pro Left JOIN project_sale_line_employee_map pro_emp ON pro_emp.project_id = pro.id @@ -109,7 +109,7 @@ class BudgetAmtAnalysis(models.Model): pro.pricing_type as pricing_type, pro.project_type as project_type, null::date AS timesheet_date, - null::timestamp with time zone AS timesheet_sdatetime, + null::timestamp AS timesheet_sdatetime, pro.budgeted_revenue AS revenue FROM project_project pro --Left JOIN project_sale_line_employee_map pro_emp ON pro_emp.project_id = pro.id