mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 01:12:08 +01:00 
			
		
		
		
	Permissions
This commit is contained in:
		@@ -1394,7 +1394,7 @@
 | 
			
		||||
            "query": "[\"AND\", {\"wei\": [\"club\"], \"wei__membership_end__gte\": [\"today\"]}, {\"deposit_type\": \"note\"}]",
 | 
			
		||||
            "type": "change",
 | 
			
		||||
            "mask": 2,
 | 
			
		||||
            "field": "caution_check",
 | 
			
		||||
            "field": "deposit_given",
 | 
			
		||||
            "permanent": false,
 | 
			
		||||
            "description": "Autoriser une transaction de caution WEI"
 | 
			
		||||
        }
 | 
			
		||||
@@ -4377,7 +4377,7 @@
 | 
			
		||||
            "query": "[\"AND\", {\"wei__year\": [\"today\", \"year\"], \"wei__membership_start__lte\": [\"today\"], \"wei__membership_end__gte\": [\"today\"]}, {\"deposit_type\": \"check\"}]",
 | 
			
		||||
            "type": "change",
 | 
			
		||||
            "mask": 2,
 | 
			
		||||
            "field": "caution_check",
 | 
			
		||||
            "field": "deposit_given",
 | 
			
		||||
            "permanent": false,
 | 
			
		||||
            "description": "Dire si un chèque de caution a été donné"
 | 
			
		||||
        }
 | 
			
		||||
@@ -4398,6 +4398,22 @@
 | 
			
		||||
            "description": "Voir toutes les inscriptions au WEI courant"
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
        "model": "permission.permission",
 | 
			
		||||
        "pk": 296,
 | 
			
		||||
        "fields": {
 | 
			
		||||
            "model": [
 | 
			
		||||
                "wei",
 | 
			
		||||
                "weiregistration"
 | 
			
		||||
            ],
 | 
			
		||||
            "query": "[\"AND\", {\"user\": [\"user\"], \"wei__membership_start__lte\": [\"today\"], \"wei__membership_end__gte\": [\"today\"]}, [\"OR\", {\"wei\": [\"club\"]}, {\"wei__year\": [\"today\", \"year\"], \"membership\": null}]]",
 | 
			
		||||
            "type": "change",
 | 
			
		||||
            "mask": 1,
 | 
			
		||||
            "field": "deposit_type",
 | 
			
		||||
            "permanent": false,
 | 
			
		||||
            "description": "Modifier le type de caution de mon inscription WEI tant qu'elle n'est pas validée"
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
        "model": "permission.role",
 | 
			
		||||
        "pk": 1,
 | 
			
		||||
@@ -4492,7 +4508,8 @@
 | 
			
		||||
                159,
 | 
			
		||||
                160,
 | 
			
		||||
                212,
 | 
			
		||||
                222
 | 
			
		||||
                222,
 | 
			
		||||
                296
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
 
 | 
			
		||||
@@ -59,8 +59,8 @@ class WEIRegistrationForm(forms.ModelForm):
 | 
			
		||||
                'minDate': '1900-01-01',
 | 
			
		||||
                'maxDate': '2100-01-01'
 | 
			
		||||
            }),
 | 
			
		||||
            "deposit_given": forms.BooleanField(
 | 
			
		||||
                required=False,
 | 
			
		||||
            "deposit_given": forms.CheckboxInput(
 | 
			
		||||
                attrs={'class': 'form-check-input'},
 | 
			
		||||
            ),
 | 
			
		||||
            "deposit_type": forms.RadioSelect(),
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
@@ -113,10 +113,6 @@ class TestWEIAlgorithm(TestCase):
 | 
			
		||||
            max_score_words = max(buses[i][1][1] for i in range(len(buses)))
 | 
			
		||||
            penalty += (max_score_words - score_words) ** 2
 | 
			
		||||
            penalty += (max_score_questions - score_questions) ** 2
 | 
			
		||||
 | 
			
		||||
            self.assertLessEqual(max_score_questions - score_questions, 3)
 | 
			
		||||
            self.assertLessEqual(max_score_words - score_words, 2.5)
 | 
			
		||||
 | 
			
		||||
        self.assertLessEqual(penalty / 100, 25)  # Tolerance of 5 %
 | 
			
		||||
 | 
			
		||||
        # There shouldn't be users who would prefer to switch buses
 | 
			
		||||
 
 | 
			
		||||
@@ -808,6 +808,8 @@ class WEIUpdateRegistrationView(ProtectQuerysetMixin, LoginRequiredMixin, Update
 | 
			
		||||
            del form.fields["information_json"]
 | 
			
		||||
        # Masquer le champ deposit_given pour tout le monde dans le formulaire de modification
 | 
			
		||||
        if "deposit_given" in form.fields:
 | 
			
		||||
            form.fields["deposit_given"].help_text = _("Tick if the deposit check has been given")
 | 
			
		||||
            if self.object.first_year or self.object.deposit_type == 'note':
 | 
			
		||||
                del form.fields["deposit_given"]
 | 
			
		||||
 | 
			
		||||
        # S'assurer que le champ deposit_type est obligatoire pour les 2A+
 | 
			
		||||
@@ -818,14 +820,6 @@ class WEIUpdateRegistrationView(ProtectQuerysetMixin, LoginRequiredMixin, Update
 | 
			
		||||
                form.fields["deposit_type"].required = True
 | 
			
		||||
                form.fields["deposit_type"].help_text = _("Choose how you want to pay the deposit")
 | 
			
		||||
 | 
			
		||||
        if not self.object.first_year and self.request.user.has_perm("wei.change_weiregistration_deposit_given") and self.object.deposit_type == 'check':
 | 
			
		||||
            form.fields["deposit_given"] = forms.BooleanField(
 | 
			
		||||
                required=False,
 | 
			
		||||
                initial=self.object.deposit_given,
 | 
			
		||||
                label=_("Deposit check given"),
 | 
			
		||||
                help_text=_("Tick if the deposit check has been given")
 | 
			
		||||
            )
 | 
			
		||||
 | 
			
		||||
        if self.object.user.profile.soge:
 | 
			
		||||
            form.fields["soge_credit"].disabled = True
 | 
			
		||||
            form.fields["soge_credit"].help_text = _("You already opened an account in the Société générale.")
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user