diff --git a/scipost_django/finances/forms.py b/scipost_django/finances/forms.py index 0dbc90b9d112b9f40912475faf98bccce58b22c8..3d13edceaf7e5ca2fba66c5134f55e1d2f36536c 100644 --- a/scipost_django/finances/forms.py +++ b/scipost_django/finances/forms.py @@ -404,29 +404,29 @@ class SubsidyAttachmentForm(forms.ModelForm): required=False, ) - def clean(self): - orphaned = self.cleaned_data["subsidy"] is None - attachment_filename = self.cleaned_data["attachment"].name.split("/")[-1] - - # Allow misnamed orphans - if orphaned: - return - - filename_regex = ( - "^SciPost_" - "[0-9]{4,}(-[0-9]{4,})?_[A-Z]{2,}_[\w]+_" - "(Agreement|Invoice|ProofOfPayment|Other)" - "(-[0-9]{2,})?(_[\w]+)?\.(pdf|docx|png)$" - ) - pattern = re.compile(filename_regex) - - # - if not pattern.match(attachment_filename): - self.add_error( - "attachment", - "The filename does not match the required regex pattern " - f"'{filename_regex}'", - ) + # def clean(self): + # orphaned = self.cleaned_data["subsidy"] is None + # attachment_filename = self.cleaned_data["attachment"].name.split("/")[-1] + + # # Allow misnamed orphans + # if orphaned: + # return + + # filename_regex = ( + # "^SciPost_" + # "[0-9]{4,}(-[0-9]{4,})?_[A-Z]{2,}_[\w]+_" + # "(Agreement|Invoice|ProofOfPayment|Other)" + # "(-[0-9]{2,})?(_[\w]+)?\.(pdf|docx|png)$" + # ) + # pattern = re.compile(filename_regex) + + # # + # if not pattern.match(attachment_filename): + # self.add_error( + # "attachment", + # "The filename does not match the required regex pattern " + # f"'{filename_regex}'", + # ) #############