Order change form: No default fee type, use most generic fee type first (Z#23179634) (#4771)

This commit is contained in:
Raphael Michel
2025-01-21 17:48:31 +01:00
committed by GitHub
parent 1f49b577f0
commit 46aefc10f3
2 changed files with 8 additions and 2 deletions

View File

@@ -2281,9 +2281,9 @@ class OrderFee(models.Model):
FEE_TYPE_OTHER = "other"
FEE_TYPE_GIFTCARD = "giftcard"
FEE_TYPES = (
(FEE_TYPE_SERVICE, _("Service fee")),
(FEE_TYPE_PAYMENT, _("Payment fee")),
(FEE_TYPE_SHIPPING, _("Shipping fee")),
(FEE_TYPE_SERVICE, _("Service fee")),
(FEE_TYPE_CANCELLATION, _("Cancellation fee")),
(FEE_TYPE_INSURANCE, _("Insurance fee")),
(FEE_TYPE_LATE, _("Late fee")),