diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-06-26 15:38:29 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-06-26 15:39:01 +0200 |
commit | 28b24949bd7216630ace8ba77b4840a13da2373c (patch) | |
tree | d07b853ab8de0ba5948b7318fa2b0fd9f65fc71f | |
parent | cc9250d23c18573ca6dee177d7aebbdf330114a6 (diff) | |
download | Ishtar-28b24949bd7216630ace8ba77b4840a13da2373c.tar.bz2 Ishtar-28b24949bd7216630ace8ba77b4840a13da2373c.zip |
🐛 Operation form: the operation code field (Patriarche) is no longer optional
-rw-r--r-- | archaeological_operations/forms.py | 3 | ||||
-rw-r--r-- | changelog/en/changelog_2022-06-15.md | 4 | ||||
-rw-r--r-- | changelog/fr/changelog_2023-01-25.md | 1 |
3 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 23edc32b3..2104938c2 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -708,8 +708,7 @@ class OperationFormGeneral(CustomForm, ManageOldType): pk = forms.IntegerField(required=False, widget=forms.HiddenInput) code_patriarche = forms.CharField(label="Code PATRIARCHE", max_length=500, - widget=OAWidget, - required=False) + widget=OAWidget) drassm_code = forms.CharField( label=_("DRASSM code"), required=False, max_length=100) operation_type = forms.ChoiceField(label=_("Operation type"), diff --git a/changelog/en/changelog_2022-06-15.md b/changelog/en/changelog_2022-06-15.md index 5bdf3bf21..710096814 100644 --- a/changelog/en/changelog_2022-06-15.md +++ b/changelog/en/changelog_2022-06-15.md @@ -6,8 +6,8 @@ v4.0.50 - 2999-12-31 - improve changelog display ### Bug fixes ### -- fix crash on qrcode generation for base finds - +- Operation form: the operation code field (Patriarche) is no longer optional +- fix crash on qrcode generation for base finds v4.0.49 - 2023-06-21 -------------------- diff --git a/changelog/fr/changelog_2023-01-25.md b/changelog/fr/changelog_2023-01-25.md index a236a2386..bc221417a 100644 --- a/changelog/fr/changelog_2023-01-25.md +++ b/changelog/fr/changelog_2023-01-25.md @@ -6,6 +6,7 @@ v4.0.50 - 2999-12-31 - Amélioration de l'affichage du journal de modifications ### Corrections de dysfonctionnements ### +- Formulaire opération : le champ code opération (Patriarche) n'est plus facultatif - Correction d'erreur lors de la génération de qrcode pour le mobilier d'origine |