Current path: home/webdevt/prestashop17/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/
?? Go up: /home/webdevt/prestashop17/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage
{#**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*#}
{% if suppliers|length > 0 %}
<h4>{{ 'Supplier reference(s)'|trans({}, 'Admin.Catalog.Feature') }}</h4>
<div class="row">
<div class="col-md-12">
<div class="alert alert-info" role="alert">
<p class="alert-text">
{{ 'You can specify product reference(s) for each associated supplier. Click "%save_label%" after changing selected suppliers to display the associated product references.'|trans({'%save_label%': 'Save'|trans({}, 'Admin.Actions')}, 'Admin.Catalog.Help')|raw }}
</p>
</div>
</div>
</div>
{% endif %}
{% for supplierId in suppliers %}
{% set collectionName = 'supplier_combination_' ~ supplierId %}
<div class="panel panel-default">
<div class="panel-heading"><strong>{{ form[collectionName].vars.label }}</strong></div>
<div class="panel-body" id="supplier_combination_{{ supplierId }}">
<div>
{{ form_errors(form[collectionName]) }}
<table class="table">
<thead class="thead-default">
<tr >
<th width="30%">{{ 'Product name'|trans({}, 'Admin.Catalog.Feature') }}</th>
<th width="30%">{{ 'Supplier reference'|trans({}, 'Admin.Catalog.Feature') }}</th>
<th width="20%">{{ 'Cost price (tax excl.)'|trans({}, 'Admin.Catalog.Feature') }}</th>
<th width="20%">{{ 'Currency'|trans({}, 'Admin.Global') }}</th>
</tr>
</thead>
<tbody>
{% for supplier_combination in form[collectionName] %}
<tr>
<td>{{ supplier_combination.vars.value.label }}</td>
<td>{{ form_widget(supplier_combination.supplier_reference) }}</td>
<td>{{ form_widget(supplier_combination.product_price) }}</td>
<td>
{{ form_widget(supplier_combination.product_price_currency) }}
{{ form_widget(supplier_combination.id_product_attribute) }}
{{ form_widget(supplier_combination.supplier_id) }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% endfor %}