Add service fees as a first-level fee type

This commit is contained in:
Raphael Michel
2018-02-27 22:39:07 +01:00
parent f61e9367ec
commit 37f0f7a138

View File

@@ -668,10 +668,12 @@ class OrderFee(models.Model):
"""
FEE_TYPE_PAYMENT = "payment"
FEE_TYPE_SHIPPING = "shipping"
FEE_TYPE_SERVICE = "service"
FEE_TYPE_OTHER = "other"
FEE_TYPES = (
(FEE_TYPE_PAYMENT, _("Payment fee")),
(FEE_TYPE_SHIPPING, _("Shipping fee")),
(FEE_TYPE_SERVICE, _("Service fee")),
(FEE_TYPE_OTHER, _("Other fees")),
)