80 lines
4.2 KiB
Smarty
80 lines
4.2 KiB
Smarty
{**
|
|
* 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)
|
|
*}
|
|
|
|
{extends file="helpers/view/view.tpl"}
|
|
|
|
{block name="override_tpl"}
|
|
<div class="panel">
|
|
<div class="panel-heading">{$supplier->name} - {l s='Number of products:'} {count($products)}</div>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th><span class="title_box">{l s='Product name'}</span></th>
|
|
<th><span class="title_box">{l s='Attribute name'}</span></th>
|
|
<th><span class="title_box">{l s='Supplier Reference'}</span></th>
|
|
<th><span class="title_box">{l s='Wholesale price'}</span></th>
|
|
<th><span class="title_box">{l s='Reference' d='Admin.Global'}</span></th>
|
|
<th><span class="title_box">{l s='EAN13'}</span></th>
|
|
<th><span class="title_box">{l s='UPC'}</span></th>
|
|
<th><span class="title_box">{l s='MPN' d='Admin.Catalog.Feature'}</span></th>
|
|
{if $stock_management && $shopContext != Shop::CONTEXT_ALL}<th class="right"><span class="title_box">{l s='Available Quantity'}</span></th>{/if}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach $products AS $product}
|
|
{if !$product->hasAttributes()}
|
|
<tr>
|
|
<td><a class="btn btn-link" href="{$link->getAdminLink('AdminProducts', true, ['id_product' => $product->id, 'updateproduct' => '1'])|escape:'html':'UTF-8'}">{$product->name}</a></td>
|
|
<td>{l s='N/A'}</td>
|
|
<td>{if empty($product->product_supplier_reference)}{l s='N/A'}{else}{$product->product_supplier_reference}{/if}</td>
|
|
<td>{if empty($product->product_supplier_price_te)}0{else}{$product->product_supplier_price_te}{/if}</td>
|
|
<td>{if empty($product->reference)}{l s='N/A'}{else}{$product->reference}{/if}</td>
|
|
<td>{if empty($product->ean13)}{l s='N/A'}{else}{$product->ean13}{/if}</td>
|
|
<td>{if empty($product->upc)}{l s='N/A'}{else}{$product->upc}{/if}</td>
|
|
<td>{if empty($product->mpn)}{l s='N/A'}{else}{$product->mpn}{/if}</td>
|
|
{if $stock_management && $shopContext != Shop::CONTEXT_ALL}<td class="right" width="150">{$product->quantity}</td>{/if}
|
|
</tr>
|
|
{else}
|
|
{foreach $product->combination AS $id_product_attribute => $product_attribute}
|
|
<tr {if $id_product_attribute %2}class="alt_row"{/if} >
|
|
<td><a class="btn btn-link" href="{$link->getAdminLink('AdminProducts', true, ['id_product' => $product->id, 'updateproduct' => '1'])|escape:'html':'UTF-8'}">{$product->name}</a></td>
|
|
<td>{if empty($product_attribute.attributes)}{l s='N/A'}{else}{$product_attribute.attributes}{/if}</td>
|
|
<td>{if empty($product_attribute.product_supplier_reference)}{l s='N/A'}{else}{$product_attribute.product_supplier_reference}{/if}</td>
|
|
<td>{if empty($product_attribute.product_supplier_price_te)}0{else}{$product_attribute.product_supplier_price_te}{/if}</td>
|
|
<td>{if empty($product_attribute.reference)}{l s='N/A'}{else}{$product_attribute.reference}{/if}</td>
|
|
<td>{if empty($product_attribute.ean13)}{l s='N/A'}{else}{$product_attribute.ean13}{/if}</td>
|
|
<td>{if empty($product_attribute.upc)}{l s='N/A'}{else}{$product_attribute.upc}{/if}</td>
|
|
<td>{if empty($product_attribute.mpn)}{l s='N/A'}{else}{$product_attribute.mpn}{/if}</td>
|
|
{if $stock_management && $shopContext != Shop::CONTEXT_ALL}<td class="right">{$product_attribute.quantity}</td>{/if}
|
|
</tr>
|
|
{/foreach}
|
|
{/if}
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{/block}
|
|
|