From 42ab9e4c229cc64c0c1d1fe34579d79eb1163a9c Mon Sep 17 00:00:00 2001 From: prakash Date: Wed, 16 Mar 2022 18:26:41 +0530 Subject: [PATCH] Export datetime format updated --- 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 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