Allow 0% tax rate on event creation (#4756)

(but still warn if tax rate is not filled at all)
This commit is contained in:
Mira
2025-01-23 12:59:39 +01:00
committed by GitHub
parent 9622bf41a1
commit 0a23aeece4
2 changed files with 2 additions and 2 deletions

View File

@@ -231,7 +231,7 @@ class EventWizardBasicsForm(I18nModelForm):
raise ValidationError({
'timezone': _('Your default locale must be specified.')
})
if not data.get("no_taxes") and not data.get("tax_rate"):
if not data.get("no_taxes") and data.get("tax_rate") is None:
raise ValidationError({
'tax_rate': _('You have not specified a tax rate. If you do not want us to compute sales taxes, please '
'check "{field}" above.').format(field=self.fields["no_taxes"].label)