ComGrafPL Posted 16 hours ago Share Posted 16 hours ago Works for me on 8+. /public_html/themes/your_theme/templates/customer/_partials <div class="name"> <a href="{$urls.pages.product}?id_product={$product.id_product}{if $product.id_product_attribute}&id_product_attribute={$product.id_product_attribute}{/if}" title="{$product.name}"> {$product.name} </a> Files to changes. order-detail-no-return.tpl {** * 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 Academic Free License 3.0 (AFL-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/AFL-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 [email protected] 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. *} {block name='order_products_table'} <form id="order-return-form" class="js-order-return-form" action="{$urls.pages.order_follow}" method="post"> <div class="box hidden-sm-down"> <table id="order-products" class="table table-bordered return"> <thead class="thead-default"> <tr> <th class="head-checkbox"><input type="checkbox"/></th> <th>{l s='Product' d='Shop.Theme.Catalog'}</th> <th>{l s='Quantity' d='Shop.Theme.Catalog'}</th> <th>{l s='Returned' d='Shop.Theme.Customeraccount'}</th> <th>{l s='Unit price' d='Shop.Theme.Catalog'}</th> <th>{l s='Total price' d='Shop.Theme.Catalog'}</th> </tr> </thead> {foreach from=$order.products item=product name=products} <tr> <td> {if !$product.customizations} <span id="_desktop_product_line_{$product.id_order_detail}"> <input type="checkbox" id="cb_{$product.id_order_detail}" name="ids_order_detail[{$product.id_order_detail}]" value="{$product.id_order_detail}"> </span> {else} {foreach $product.customizations as $customization} <span id="_desktop_product_customization_line_{$product.id_order_detail}_{$customization.id_customization}"> <input type="checkbox" id="cb_{$product.id_order_detail}" name="customization_ids[{$product.id_order_detail}][]" value="{$customization.id_customization}"> </span> {/foreach} {/if} </td> <td> <strong> <a href="{$urls.pages.product}?id_product={$product.id_product}{if $product.id_product_attribute}&id_product_attribute={$product.id_product_attribute}{/if}" title="{$product.name}"> {$product.name} </a> </strong><br/> {if $product.product_reference} {l s='Reference' d='Shop.Theme.Catalog'}: {$product.product_reference}<br/> {/if} {if $product.customizations} {foreach from=$product.customizations item="customization"} <div class="customization"> <a href="#" data-toggle="modal" data-target="#product-customizations-modal-{$customization.id_customization}">{l s='Product customization' d='Shop.Theme.Catalog'}</a> </div> <div id="_desktop_product_customization_modal_wrapper_{$customization.id_customization}"> <div class="modal fade customization-modal" id="product-customizations-modal-{$customization.id_customization}" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="{l s='Close' d='Shop.Theme.Global'}"> <span aria-hidden="true">×</span> </button> <h4 class="modal-title">{l s='Product customization' d='Shop.Theme.Catalog'}</h4> </div> <div class="modal-body"> {foreach from=$customization.fields item="field"} <div class="product-customization-line row"> <div class="col-sm-3 col-xs-4 label"> {$field.label} </div> <div class="col-sm-9 col-xs-8 value"> {if $field.type == 'text'} {if (int)$field.id_module} {$field.text nofilter} {else} {$field.text} {/if} {elseif $field.type == 'image'} <img src="{$field.image.small.url}" loading="lazy"> {/if} </div> </div> {/foreach} </div> </div> </div> </div> </div> {/foreach} {/if} </td> <td class="qty"> {if !$product.customizations} <div class="current"> {$product.quantity} </div> {if $product.quantity > $product.qty_returned} <div class="select" id="_desktop_return_qty_{$product.id_order_detail}"> <select name="order_qte_input[{$product.id_order_detail}]" class="form-control form-control-select"> {section name=quantity start=1 loop=$product.quantity+1-$product.qty_returned} <option value="{$smarty.section.quantity.index}">{$smarty.section.quantity.index}</option> {/section} </select> </div> {/if} {else} {foreach $product.customizations as $customization} <div class="current"> {$customization.quantity} </div> <div class="select" id="_desktop_return_qty_{$product.id_order_detail}_{$customization.id_customization}"> <select name="customization_qty_input[{$customization.id_customization}]" class="form-control form-control-select" > {section name=quantity start=1 loop=$customization.quantity+1} <option value="{$smarty.section.quantity.index}">{$smarty.section.quantity.index}</option> {/section} </select> </div> {/foreach} <div class="clearfix"></div> {/if} </td> <td class="text-xs-right">{$product.qty_returned}</td> <td class="text-xs-right">{$product.price}</td> <td class="text-xs-right">{$product.total}</td> </tr> {/foreach} <tfoot> {foreach $order.subtotals as $line} {if $line.value} <tr class="text-xs-right line-{$line.type}"> <td colspan="5">{$line.label}</td> <td colspan="2">{$line.value}</td> </tr> {/if} {/foreach} <tr class="text-xs-right line-{$order.totals.total.type}"> <td colspan="5">{$order.totals.total.label}</td> <td colspan="2">{$order.totals.total.value}</td> </tr> </tfoot> </table> </div> ... </form> {/block} order-detail-return.tpl {** * 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 Academic Free License 3.0 (AFL-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/AFL-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 [email protected] 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. *} {block name='order_products_table'} <div class="box hidden-sm-down"> <table id="order-products" class="table table-bordered"> <thead class="thead-default"> <tr> <th>{l s='Product' d='Shop.Theme.Catalog'}</th> <th>{l s='Quantity' d='Shop.Theme.Catalog'}</th> <th>{l s='Unit price' d='Shop.Theme.Catalog'}</th> <th>{l s='Total price' d='Shop.Theme.Catalog'}</th> </tr> </thead> {foreach from=$order.products item=product} <tr> <td> <strong> <a href="{$urls.pages.product}?id_product={$product.id_product}{if $product.id_product_attribute}&id_product_attribute={$product.id_product_attribute}{/if}" title="{$product.name}"> {$product.name} </a> </strong><br/> {if $product.product_reference} {l s='Reference' d='Shop.Theme.Catalog'}: {$product.product_reference}<br/> {/if} {if $product.customizations} {foreach from=$product.customizations item="customization"} <div class="customization"> <a href="#" data-toggle="modal" data-target="#product-customizations-modal-{$customization.id_customization}">{l s='Product customization' d='Shop.Theme.Catalog'}</a> </div> <div id="_desktop_product_customization_modal_wrapper_{$customization.id_customization}"> <div class="modal fade customization-modal" id="product-customizations-modal-{$customization.id_customization}" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="{l s='Close' d='Shop.Theme.Global'}"> <span aria-hidden="true">×</span> </button> <h4 class="modal-title">{l s='Product customization' d='Shop.Theme.Catalog'}</h4> </div> <div class="modal-body"> {foreach from=$customization.fields item="field"} <div class="product-customization-line row"> <div class="col-sm-3 col-xs-4 label"> {$field.label} </div> <div class="col-sm-9 col-xs-8 value"> {if $field.type == 'text'} {if (int)$field.id_module} {$field.text nofilter} {else} {$field.text} {/if} {elseif $field.type == 'image'} <img src="{$field.image.small.url}" loading="lazy"> {/if} </div> </div> {/foreach} </div> </div> </div> </div> </div> {/foreach} {/if} </td> <td> {if $product.customizations} {foreach $product.customizations as $customization} {$customization.quantity} {/foreach} {else} {$product.quantity} {/if} </td> <td class="text-xs-right">{$product.price}</td> <td class="text-xs-right">{$product.total}</td> </tr> {/foreach} <tfoot> {foreach $order.subtotals as $line} {if $line.value} <tr class="text-xs-right line-{$line.type}"> <td colspan="3">{$line.label}</td> <td>{$line.value}</td> </tr> {/if} {/foreach} <tr class="text-xs-right line-{$order.totals.total.type}"> <td colspan="3">{$order.totals.total.label}</td> <td>{$order.totals.total.value}</td> </tr> </tfoot> </table> </div> <div class="order-items hidden-md-up box"> {foreach from=$order.products item=product} <div class="order-item"> <div class="row"> <div class="col-sm-5 desc"> <div class="name"> <a href="{$urls.pages.product}?id_product={$product.id_product}{if $product.id_product_attribute}&id_product_attribute={$product.id_product_attribute}{/if}" title="{$product.name}"> {$product.name} </a> </div> {if $product.product_reference} <div class="ref">{l s='Reference' d='Shop.Theme.Catalog'}: {$product.product_reference}</div> {/if} {if $product.customizations} {foreach $product.customizations as $customization} <div class="customization"> <a href="#" data-toggle="modal" data-target="#product-customizations-modal-{$customization.id_customization}">{l s='Product customization' d='Shop.Theme.Catalog'}</a> </div> <div id="_mobile_product_customization_modal_wrapper_{$customization.id_customization}"> </div> {/foreach} {/if} </div> <div class="col-sm-7 qty"> <div class="row"> <div class="col-xs-4 text-sm-left text-xs-left"> {$product.price} </div> <div class="col-xs-4"> {if $product.customizations} {foreach $product.customizations as $customization} {$customization.quantity} {/foreach} {else} {$product.quantity} {/if} </div> <div class="col-xs-4 text-xs-right"> {$product.total} </div> </div> </div> </div> </div> {/foreach} </div> <div class="order-totals hidden-md-up box"> {foreach $order.subtotals as $line} {if $line.value} <div class="order-total row"> <div class="col-xs-8"><strong>{$line.label}</strong></div> <div class="col-xs-4 text-xs-right">{$line.value}</div> </div> {/if} {/foreach} <div class="order-total row"> <div class="col-xs-8"><strong>{$order.totals.total.label}</strong></div> <div class="col-xs-4 text-xs-right">{$order.totals.total.value}</div> </div> </div> {/block} Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now