diff --git a/scipost_django/submissions/forms/__init__.py b/scipost_django/submissions/forms/__init__.py index 434488049124ea29048b76249a1e64078a050665..61067189aab6fc1119ceec0a0433928f12eb6ca2 100644 --- a/scipost_django/submissions/forms/__init__.py +++ b/scipost_django/submissions/forms/__init__.py @@ -2715,6 +2715,14 @@ class EICRecommendationForm(forms.ModelForm): recommendation.save() + # The EIC should vote in favour of their own recommendation + # This should be done after the recommendation is saved, so that the + # id is determined for use in the ManyToMany relation. + # Tiering has already been created above, and no special objects are required + # in the event of submission rejection. + recommendation.voted_for.add(self.submission.editor_in_charge) + recommendation.save() + return recommendation def revision_requested(self):