From cf693aa0c3466d99d82f515bed1da1aca7b0818b Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Sun, 9 Mar 2025 17:54:16 -0300 Subject: [PATCH] fix(transactions:transfer): remove required description field #209 --- app/apps/transactions/forms.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/apps/transactions/forms.py b/app/apps/transactions/forms.py index 83fa57a..1ea1c65 100644 --- a/app/apps/transactions/forms.py +++ b/app/apps/transactions/forms.py @@ -334,7 +334,9 @@ class TransferForm(forms.Form): widget=AirMonthYearPickerInput(), label=_("Reference Date"), required=False ) - description = forms.CharField(max_length=500, label=_("Description")) + description = forms.CharField( + max_length=500, label=_("Description"), required=False + ) notes = forms.CharField( required=False, widget=forms.Textarea(