{% extends "pretixcontrol/help/base.html" %} {% block title %}Payment fee calculation{% endblock %} {% block inner %}
If you configure a fee for a payment method, there are two possible ways for us to calculate this. Let's assume that your payment provider, e.g. PayPal, charges you 5 % fees and you want to charge your users the same 5 %, such that for a ticket with a list price of 100 € you will get your full 100 €.
Ticket price | 100.00 € |
pretix calculates the fee as 5% of 100 € | + 5.00 € |
Subtotal that will be paid by the customer | 105.00 € |
PayPal calculates its fee as 5% of 105 € | - 5.25 € |
End total that is on your bank account | 99.75 € |
Ticket price | 100.00 € |
pretix calculates the fee as 100/(100 - 5)% of 100 € | + 5.26 € |
Subtotal that will be paid by the customer | 105.26 € |
PayPal calculates its fee as 5% of 105.26 € | - 5.26 € |
End total that is on your bank account | 100.00 € |