Skip to content

Commit 81b7b4e

Browse files
committed
[FIX] project_timeline: Allow to install this module with project_enterprise
This PR fixes an issue added in commit 3689f1d When the module project_timeline is installed in a database with the module project_enterprise, it raises the following error: psycopg2.errors.DuplicateColumn: column "planned_date_end" specified more than once This is because the field planned_date_end is defined in both modules. This PR checks if the field is already defined in the query before adding it.
1 parent 4a2a5c7 commit 81b7b4e

File tree

1 file changed

+22
-7
lines changed

1 file changed

+22
-7
lines changed

project_timeline/report/project_report.py

+22-7
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,33 @@ class ReportProjectTaskUser(models.Model):
1111
planned_date_end = fields.Datetime(readonly=True)
1212

1313
def _select(self):
14+
res = super()._select()
15+
if "planned_date_end" in res:
16+
return (
17+
res
18+
+ """,
19+
t.planned_date_start"""
20+
)
1421
return (
15-
super()._select()
22+
res
1623
+ """,
17-
t.planned_date_start,
18-
t.planned_date_end"""
24+
t.planned_date_start as planned_date_start,
25+
t.planned_date_end as planned_date_end
26+
"""
1927
)
2028

2129
def _group_by(self):
30+
res = super()._group_by()
31+
if "planned_date_end" in res:
32+
return (
33+
res
34+
+ """,
35+
t.planned_date_start"""
36+
)
2237
return (
23-
super()._group_by()
38+
res
2439
+ """,
25-
t.planned_date_start,
26-
t.planned_date_end
27-
"""
40+
planned_date_start,
41+
planned_date_end
42+
"""
2843
)

0 commit comments

Comments
 (0)