{% if paymentmethod.getPrice() %}
{% set oPaymentPrice = paymentmethod.getPrice() %}
{% if oViewConf.isFunctionalityEnabled('blShowVATForPayCharge') %}
{{ format_price(oPaymentPrice.getNettoPrice(), { currency: currency }) }}
{% if oPaymentPrice.getVatValue() > 0 %}
{{ translate({ ident: "PLUS_VAT" }) }} {{ format_price(oPaymentPrice.getVatValue(), { currency: currency }) }}
{% endif %}
{% else %}
{{ format_price(oPaymentPrice.getBruttoPrice(), { currency: currency }) }}
{% endif %}
{% endif %}