{% extends 'layouts/authenticated.html.twig' %} {% import 'flowbite_components/macros.html.twig' as flowbite %} {% block page_title %}Configuration POS{% endblock %} {% block content %}
{# Header #}

Configuration POS

Paramétrage de la boutique {{ company.name }}

{% if settings.isPosEnabled %} POS Activé {% else %} POS Désactivé {% endif %}
{{ form_start(form, {'attr': {'class': 'space-y-6'}}) }} {# Activation POS #}

Activation du module

Activez le module POS pour accéder à toutes les fonctionnalités de vente

{{ form_widget(form.isPosEnabled, {'attr': {'class': 'w-5 h-5 text-emerald-600 rounded focus:ring-emerald-500'}}) }}
{# Onglets de configuration #}
{# Navigation onglets #}
{# Onglet Général #}

Paramètres généraux

{{ form_row(form.shopName) }}
{{ form_row(form.currency) }}
{{ form_row(form.currencySymbol) }}
{{ form_row(form.taxRate) }}
{{ form_row(form.decimalPlaces) }}
{{ form_row(form.taxIncluded) }}
{# Onglet Stock #} {# Onglet Ventes #} {# Onglet Paiements #} {# Onglet Employés #} {# Onglet Notifications #} {# Onglet Ticket #} {# Onglet Code-barres #}
{# Bouton sauvegarder #}
{{ form_end(form) }}
{% endblock %}