{% extends 'stela_control/base.html' %} {% load hosts %} {% load static %} {% load i18n %} {% load l10n %} {% block language %}
{% get_current_language as LANGUAGE_CODE %} {% get_available_languages as LANGUAGES %} {% get_language_info_list for LANGUAGES as languages %} {% for language in languages %} {% if language.code == site_data.lang %} {% endif %} {% endfor %}
{% csrf_token %} {% get_current_language as LANGUAGE_CODE %} {% get_available_languages as LANGUAGES %} {% get_language_info_list for LANGUAGES as languages %} {% for language in languages %} {% endfor %}
{% endblock %} {% block content %}

{% trans "Checkout" %}

{% trans "Business Name" %}: {{inv.owner.full_name}}

{% trans "Customer" %}: {{inv.customer.full_name}}

{% trans "Billing Date" %}: {{inv.created}}
{% if inv.service_recipt.all %}

{% trans "Service Description" %}

{% elif inv.product_recipt.all %}

{% trans "Product Description" %}

{% endif %} {% if inv.service_recipt.all %}
    {% for item in inv.service_recipt.all %}
  • {{item.field}}
  • {% endfor %}
{% elif inv.product_recipt.all %}
    {% for item in inv.product_recipt.all %}
  • {{item.field}} x {{item.qty}} x ${{item.field.price}}
  • {% endfor %}
{% endif %} {% if inv.discounts.all %}

{% trans "List Discounts" %}

    {% for item in inv.discounts.all %}
  • {{item.field}} ${{item.amount}}
  • {% endfor %}
{% endif %}

Bienvenidos a nuestra pasarela de Pago Movil Interbancario

¡Ahora completa tu pago!

Primero solicita la clave OTP para proceder

Introduzca el codigo recibido via SMS en su telefono

Stela Secure Payments

{% trans "Payment Import" %}

  • ${{inv.amount|unlocalize}}
  • ${{fee|unlocalize}}
  • ${{inv.tax|unlocalize}}
  • {% if inv.parent_discounts.all %} -${{inv.discount|unlocalize}} {% else %} ------ {% endif %}
  • ${{total|unlocalize}}
{% if user.is_basic %} {% else %} {% trans "Payment Method" %} {% trans "List of Products" %} {% endif %}

{% trans "Payment Import" %}

  • Bs. {{base}}
  • {{ves_fee}}
  • Bs. {{iva}}
  • {% if inv.parent_discounts.all %} ${{descuento}} {% else %} ------ {% endif %}
  • Bs. {{total_ves}}
{% endblock %}