Merge branch 'cor_cr' into 'master'

report query updated

See merge request prakash.jain/cor-odoo!244
This commit is contained in:
prakash.jain 2022-09-13 19:51:42 +05:30
commit 2b486b1f50
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ with pro_data as (
cons_data1 as (
SELECT
date_trunc('month', min(PRO_EMP.start_date)) AS min,
date_trunc('month', max(coalesce(PRO_EMP.end_date, current_date))) AS max,
date_trunc('month', coalesce(max(PRO_EMP.end_date), current_date)) AS max,
PRO_EMP.start_date as start_date,
coalesce(PRO_EMP.end_date, current_date) as end_date,
PRO_EMP.project_id,