Current path: home/webdevt/prestashop17/admin7261/themes/default/template/controllers/return/helpers/form/
?? Go up: /home/webdevt/prestashop17/admin7261/themes/default/template/controllers/return/helpers
{**
* 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/form/form.tpl'}
{block name="input"}
{if $input.type == 'text_customer'}
<span>{$customer->firstname} {$customer->lastname}</span>
<p>
<a class="text-muted" href="{$url_customer}">{l s='View details on the customer page' d='Admin.Orderscustomers.Help'}</a>
</p>
{elseif $input.type == 'text_order'}
<span>{$text_order}</span>
<p>
<a class="text-muted" href="{$url_order}">{l s='View details on the order page' d='Admin.Orderscustomers.Help'}</a>
</p>
{elseif $input.type == 'pdf_order_return'}
<p>
{if $state_order_return == 2}
<a class="btn" href="{$link->getPageLink('pdf-order-return', true, NULL, "id_order_return={$id_order_return|intval}&adtoken={Tools::getAdminTokenLite('AdminReturn')}&id_employee={$employee->id|intval}")|escape:'html':'UTF-8'}">
<i class="icon-file-text"></i> {l s='Print out' d='Admin.Actions'}
</a>
{else}
--
{/if}
</p>
{elseif $input.type == 'list_products'}
<table class="table">
<thead>
<tr>
<th>{l s='Reference' d='Admin.Global'}</th>
<th>{l s='Product name' d='Admin.Catalog.Feature'}</th>
<th class="text-center">{l s='Quantity' d='Admin.Global'}</th>
<th class="text-center">{l s='Action' d='Admin.Global'}</th>
</tr>
</thead>
<tbody>
{foreach $returnedCustomizations as $returnedCustomization}
<tr>
<td>{$returnedCustomization['reference']}</td>
<td>{$returnedCustomization['name']}</td>
<td class="text-center">{$returnedCustomization['product_quantity']|intval}</td>
<td class="text-center">
<a class="btn btn-default" href="{$current|escape:'html':'UTF-8'}&deleteorder_return_detail&id_order_detail={$returnedCustomization['id_order_detail']}&id_order_return={$id_order_return}&id_customization={$returnedCustomization['id_customization']}&token={$token|escape:'html':'UTF-8'}">
<i class="icon-remove"></i>
{l s='Delete' d='Admin.Actions'}
</a>
</td>
</tr>
{assign var='productId' value=$returnedCustomization.product_id}
{assign var='productAttributeId' value=$returnedCustomization.product_attribute_id}
{assign var='customizationId' value=$returnedCustomization.id_customization}
{assign var='addressDeliveryId' value=$returnedCustomization.id_address_delivery}
{foreach $customizedDatas.$productId.$productAttributeId.$addressDeliveryId.$customizationId.datas as $type => $datas}
<tr>
<td colspan="4">
<div class="form-horizontal">
{if $type == Product::CUSTOMIZE_FILE}
{foreach from=$datas item='data'}
<div class="form-group">
<span class="col-lg-3 control-label"><strong>{l s='Attachment'}</strong></span>
<div class="col-lg-9">
<a href="{$link->getAdminLink('AdminCarts', true, [], ['ajax' => 1, 'action' => 'customizationImage', 'img' => $data['value'], 'name' => $returnedCustomization['id_order_detail']|intval|cat:'-file'|cat:$smarty.foreach.data.iteration.iteration])}" target="_blank" rel="noopener noreferrer nofollow"><img class="img-thumbnail" src="{$picture_folder}{$data['value']}_small" alt="" /></a>
</div>
</div>
{/foreach}
{elseif $type == Product::CUSTOMIZE_TEXTFIELD}
{foreach from=$datas item='data'}
<div class="form-group">
<span class="control-label col-lg-3"><strong>{if $data['name']}{$data['name']}{else}{l s='Text #%d' sprintf=[$smarty.foreach.data.iteration] d='Admin.Orderscustomers.Feature'}{/if}</strong></span>
<div class="col-lg-9">
<p class="form-control-static">
{$data['value']}
</p>
</div>
</div>
{/foreach}
{/if}
</div>
</td>
</tr>
{/foreach}
{/foreach}
{* Classic products *}
{foreach $products as $k => $product}
{if !isset($quantityDisplayed[$product['id_order_detail']]) || $product['product_quantity']|intval > $quantityDisplayed[$product['id_order_detail']]|intval}
<tr>
<td>{$product['product_reference']}</td>
<td class="text-center">{$product['product_name']}</td>
<td class="text-center">{$product['product_quantity']}</td>
<td class="text-center">
<a class="btn btn-default" href="{$current|escape:'html':'UTF-8'}&deleteorder_return_detail&id_order_detail={$product['id_order_detail']}&id_order_return={$id_order_return}&token={$token|escape:'html':'UTF-8'}">
<i class="icon-remove"></i>
{l s='Delete' d='Admin.Actions'}
</a>
</td>
</tr>
{/if}
{/foreach}
</tbody>
</table>
{else}
{$smarty.block.parent}
{/if}
{/block}