Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rescheduled 🗓️
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
c3lingo
rescheduled 🗓️
Commits
893ea9ec
Verified
Commit
893ea9ec
authored
2 months ago
by
Felix Eckhofer
Browse files
Options
Downloads
Patches
Plain Diff
Fix logic for merging assignments from conference variants
parent
de1b8dc2
No related branches found
No related tags found
No related merge requests found
Pipeline
#36887
passed
2 months ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/models/conference.rb
+13
-5
13 additions, 5 deletions
app/models/conference.rb
with
13 additions
and
5 deletions
app/models/conference.rb
+
13
−
5
View file @
893ea9ec
...
...
@@ -71,6 +71,7 @@ class Conference < ApplicationRecord
def
compare_engelsystem_shifts
(
additional_conferences
=
[])
return
unless
translation_angel_id
=
fetch_translation_angel_id
return
unless
data
=
fetch_engelsystem
(
"angeltypes/
#{
translation_angel_id
}
/shifts"
)
engelsystem_shifts
=
data
.
each_with_object
({})
do
|
shift
,
hash
|
hash
[
shift
[
'id'
]]
=
shift
&
.
dig
(
"needed_angel_types"
)
...
...
@@ -78,22 +79,29 @@ class Conference < ApplicationRecord
&
.
dig
(
"entries"
)
&
.
map
{
|
t
|
t
[
"user"
][
"name"
]
}
end
Session
.
where
(
conference:
[
self
]
+
additional_conferences
).
includes
(
:assignments
).
each
do
|
session
|
next
if
session
.
engelsystem_id
.
blank?
engelsystem_assigned
=
engelsystem_shifts
[
session
.
engelsystem_id
]
local_assigned
=
session
.
assignments
.
includes
(
:user
).
map
{
|
a
|
a
.
user
.
name
}
Session
.
where
(
conference:
[
self
,
*
additional_conferences
])
.
where
.
not
(
engelsystem_id:
nil
)
.
includes
(
assignments: :user
)
.
group_by
(
&
:engelsystem_id
)
.
each
do
|
engelsystem_id
,
sessions
|
engelsystem_assigned
=
engelsystem_shifts
[
engelsystem_id
]
local_assigned
=
sessions
.
flat_map
(
&
:assignments
).
map
{
|
a
|
a
.
user
.
name
}
only_engelsystem
=
engelsystem_assigned
-
local_assigned
only_local
=
local_assigned
-
engelsystem_assigned
unless
only_engelsystem
.
blank?
and
only_local
.
blank?
puts
"============================="
puts
"Session:
#{
session
.
title
}
(
#{
session
.
engelsystem_id
}
)"
puts
"Session:
#{
session
s
[
0
]
.
title
}
(
#{
engelsystem_id
}
)"
puts
"============================="
puts
"Not signed up in engelsystem:
#{
only_local
.
join
(
", "
)
}
"
unless
only_local
.
blank?
puts
"Missing in local assignments:
#{
only_engelsystem
.
join
(
", "
)
}
"
unless
only_engelsystem
.
blank?
puts
end
end
return
true
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment