{# @var ea \EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext #} {% extends ea.templatePath('layout') %} {% trans_default_domain ea.i18n.translationDomain %} {% block body_class 'page-content' %} {% block page_title %} {% deprecated 'The "page_title" block is deprecated, use "content_title" instead.' %} {% endblock %} {% block content_title %}Aide d'importation excel{% endblock %} {% block page_content %} {% deprecated 'The "page_content" block is deprecated, use "main" instead.' %} {% endblock %} {% block main %}{{ block('page_content') }}
1 - Télecharger l'exemple excel Télecharger
2 - les champs a remplir
  1. CODE_EAN :
  2. NOM_PRODUIT :
  3. PRIX_VENTE:
  4. ANCIEN_PRIX :
  5. ---- :
  6. ---- :
2 - Affecter les categories

Copier le nom exact en gras d'une Catégorie de produits dans les champs de fichier excel (CAT1, CAT2, CAT3, CAT4, CAT5)

    {% for singleCategory in categories %} {% if singleCategory.parentCategory == null%}
  • {{singleCategory.name}} {% if singleCategory.subCategories|length > 0 %}
      {% for singleSubCategory in singleCategory.subCategories %}
    • {{singleSubCategory}} {% if singleSubCategory.subCategories|length > 0 %}
        {% for singleSubCategoryLevel2 in singleSubCategory.subCategories %}
      • {{singleSubCategoryLevel2}}
      • {% endfor %}
      {% endif %}
    • {% endfor %}
    {% endif %}
  • {% endif %} {% endfor %}
Tutorial d'importation
{% endblock %}