{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Nouveau service{% endblock %} {% block content %}

Nouveau service

Ajouter un service au catalogue

Retour
{{ form_start(form, {'attr': {'class': 'space-y-6'}}) }} {# Informations #}

Informations

Identifiez votre service avec un nom, une categorie et son type. Le SKU sera auto-genere si vous le laissez vide.

{{ form_row(form.name) }}
{{ form_row(form.sku) }}
{{ form_row(form.category) }}
{{ form_row(form.serviceType) }}
{{ form_row(form.estimatedDuration) }}
{{ form_row(form.description) }}
{# Tarification #}

Tarification

Definissez le prix de vente et le cout de revient. Le cout permet de calculer automatiquement vos marges.

{{ form_row(form.price) }}
{{ form_row(form.costPrice) }}
{{ form_row(form.taxRate) }}
{{ form_row(form.isTaxIncluded) }}
{# Options #}

Options

Configurez la visibilite et les regles de remise du service.

{{ form_row(form.isActive) }}
{{ form_row(form.allowDiscount) }}
{{ form_row(form.maxDiscountPercent) }}
{{ form_row(form.notes) }}
Annuler
{{ form_end(form) }}
{% endblock %}