{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}POS — Companies{% endblock %} {% block content %}

Companies avec POS

← Dashboard POS
{% for posSettings in settings %} {% set company = posSettings.company %}

{{ company.name }}

{{ posSettings.isPosEnabled ? 'Actif' : 'Inactif' }}

Boutique : {{ posSettings.effectiveShopName }}

Devise : {{ posSettings.currencySymbol }}

TVA : {{ posSettings.taxRate }}%

Voir détails
{% else %}
Aucune entreprise n'a activé le module POS.
{% endfor %}
{% endblock %}