Invoice settings: Reorder and explain recommended options (#3572)

This commit is contained in:
Raphael Michel
2023-09-05 16:42:16 +02:00
committed by GitHub
parent c1ebbfe82a
commit 6a36efd18c
2 changed files with 26 additions and 5 deletions

View File

@@ -1033,10 +1033,10 @@ DEFAULTS = {
widget=forms.RadioSelect,
choices=(
('False', _('Do not generate invoices')),
('admin', _('Only manually in admin panel')),
('paid', _('Automatically after payment or when required by payment method')),
('True', _('Automatically before payment for all created orders')),
('user', _('Automatically on user request')),
('True', _('Automatically for all created orders')),
('paid', _('Automatically on payment or when required by payment method')),
('admin', _('Only manually in admin panel')),
),
help_text=_("Invoices will never be automatically generated for free orders.")
)