From f7531a6913c0666085f7f806f96e875c3a0f8300 Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Tue, 1 May 2018 17:28:03 +0200 Subject: [PATCH] Debug reformulation 1. --- submissions/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submissions/models.py b/submissions/models.py index 9c3bbcf7b..52c5a0b86 100644 --- a/submissions/models.py +++ b/submissions/models.py @@ -754,7 +754,7 @@ class EICRecommendation(SubmissionRelatedObjectMixin, models.Model): """Check if this EICRecommdation is allowed to be reformulated in a new version.""" if not self.active: # Already reformulated before; please use the latest version - return False + return self.submission.eicrecommendations.last() == self return self.submission.status in [STATUS_VOTING_IN_PREPARATION, STATUS_PUT_TO_EC_VOTING] -- GitLab