Tax rule editor: Allow to reorder lines

This commit is contained in:
Raphael Michel
2020-12-11 16:17:52 +01:00
parent 246d150511
commit 903a7f122d
4 changed files with 75 additions and 45 deletions

View File

@@ -1130,7 +1130,7 @@ class TaxRuleLineForm(forms.Form):
TaxRuleLineFormSet = formset_factory(
TaxRuleLineForm,
can_order=False, can_delete=True, extra=0
can_order=True, can_delete=True, extra=0
)