Skip to content

Commit

Permalink
Merge pull request #1124 from PlanoramaEvents/plan-1033-fix-non-accep…
Browse files Browse the repository at this point in the history
…ted-report

Include not-set in the non-accepted report
  • Loading branch information
balen authored Jul 15, 2024
2 parents 1be2bb6 + c9976a9 commit 486ed7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/controllers/reports/session_reports_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def non_accepted_on_schedule

people_sessions = SessionService.person_schedule
.where("session_assignment_name in ('Moderator', 'Participant', 'Invisible')")
.where("con_state not in ('not_set', 'accepted')")
.where("con_state not in ('accepted')")
.where("start_time is not null and room_id is not null")
.order('name', 'start_time', 'title')

Expand Down
2 changes: 1 addition & 1 deletion app/javascript/reports/reports_screen.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<li>
<a href="/report/session_reports/non_accepted_on_schedule" target="_blank">Non-Accepted Participants on Scheduled Sessions</a>
<p class="ml-2">
<strong><em>Description</em></strong>: People with participant status other than &quot;accepted&quot; or &quot;not_set&quot; assigned to scheduled sessions, one line per person and session<br />
<strong><em>Description</em></strong>: People with participant status other than &quot;accepted&quot; assigned to scheduled sessions, one line per person and session<br />
<strong><em>Fields</em></strong>: Person name, published name, participant status, session title, area(s) of session, tags, admin labels<br />
<strong><em>Session data included</em></strong>: all scheduled sessions<br />
<strong><em>Person data included</em></strong>: moderators, participants, invisible participants with a participant status that is not &quot;accepted&quot; or &quot;not_set&quot;
Expand Down

0 comments on commit 486ed7f

Please sign in to comment.