{% extends '@Core/base.html.twig' %} {% block javascript %} {{ parent() }} {% endblock %} {% block sectionTitle %}Artículo {% endblock %} {% block sectionActions %} {% endblock %} {% block breadcrumbLinks %}
  • Artículos
  • Nuevo
  • {% endblock %} {% block content %}
    {% if article.id is null %}
    NUEVO ARTÍCULO
    {% else %}
    AÑADIR STOCK A ARTÍCULO
    {% endif %} {% form_theme formArticle 'bootstrap_3_layout.html.twig' %} {{ form_start(formArticle, {'attr': {'id': 'articleFormBasic'}}) }} {{ form_errors(formArticle) }}
    {% include 'CoreBundle:Orders:_article_form.html.twig' %}
    {#NUEVA TABLA DE DISTRIBUCIÓN#}
    {#AVAILABLE STOCK#}
    {#TABLA DE HISTORICAL ORDERS#}
    {{ render(url("dialogprofit")) }}
    {% for key, tax in taxes %} {% endfor %}
    Impuesto % Cantidad Costo con impuestos
    {{ tax.acronym }} {{ tax.percentage }} 0.00 0.00
    Total 0.00 0.00 0.00
    {% if groupConfiguration.articleExtraPricesSectionEnabled %} {% if article.isWhiteLabel == false %}
    {{ include('@Core/Article/_article_form_price_no_form.html.twig') }}
    {% endif %} {% endif %}
    {#TABLA DE ASIGNACIÓN DE PRECIOS#}
    {{ form_end(formArticle) }}
    {% endblock %} {% block script %} {% endblock %}