Skip to content

Commit

Permalink
[Track-278-3] Change AS amendment title (#2464)
Browse files Browse the repository at this point in the history
  • Loading branch information
tolkamps1 authored Dec 4, 2024
1 parent b41c6a8 commit aa11b6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions epictrack-api/src/api/reports/anticipated_schedule_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ def _fetch_data(self, report_date):
Work.simple_title != "",
Work.simple_title.is_not(None),
),
func.concat(Project.name, " - ", Work.simple_title, " - Amendment")
func.concat(Project.name, " - ", Work.simple_title)
),
else_=func.concat(Project.name, " - Amendment")
else_=Project.name
).label("amendment_title"),
PhaseCode.name.label("phase_name"),
latest_status_updates.c.posted_date.label("date_updated"),
Expand Down

0 comments on commit aa11b6c

Please sign in to comment.