franckisys Posted June 8, 2017 Share Posted June 8, 2017 Bonjour, Comment faire pour ajouter une colonne 'Société' (societe de livraison) dans l'historique de commande côté FrontOffice ? Merci par avance, Franck Link to comment Share on other sites More sharing options...
l'indien Posted June 18, 2017 Share Posted June 18, 2017 (edited) bonjour Franck il faut modifier dans : ..\controllers\admi\AdminOrdersController OUPS pardon je n'avais pas vus "front office" Edited June 20, 2017 by l'indien (see edit history) Link to comment Share on other sites More sharing options...
Mediacom87 Posted June 18, 2017 Share Posted June 18, 2017 Bonjour, déjà Franck, cela serait bien de préciser la version de PrestaShop utilisée. Sinon je n'ai rien compris à Société (société de livraison) qu'est ce que c'est et surtout à quel endroit précisément ? Link to comment Share on other sites More sharing options...
franckisys Posted June 19, 2017 Author Share Posted June 19, 2017 Ma version de PrestaShop est 1.7 Je souhaites ajouter le nom de la société de livraison dans la partie FrontOffice 'historique de commande" afin de reconnaitre plus simplement les commandes par rapport à leurs lieux de livraison j'ai réeussi à le faire dans la partie BackOffice, car j'ai trouver un tuto sur internet. Mas je ne trouve rien concernant le FrontOffice. Je pense bien qu'il faut faire une surcharge dans un controller mais je n'ai pas assez de connaissances pour trouver tout seul la logique. Merci par avance, Link to comment Share on other sites More sharing options...
BeComWeb Posted June 19, 2017 Share Posted June 19, 2017 Je souhaites ajouter le nom de la société de livraison ... Autrement dit le nom du transporteur ? Ou le nom de la société-client figurant dans l'adresse de livraison ? Link to comment Share on other sites More sharing options...
franckisys Posted June 19, 2017 Author Share Posted June 19, 2017 le nom de la société-client figurant dans l'adresse de livraison Link to comment Share on other sites More sharing options...
BeComWeb Posted June 19, 2017 Share Posted June 19, 2017 Bonjour, Voici le code modifié du tableau <table class="table table-striped table-bordered table-labeled hidden-sm-down"> <thead class="thead-default"> <tr> <th>{l s='Order reference' d='Shop.Theme.Checkout'}</th> <th>{l s='Date' d='Shop.Theme.Checkout'}</th> <th>{l s='Delivered to' d='Shop.Theme.Checkout'}</th> <th>{l s='Total price' d='Shop.Theme.Checkout'}</th> <th class="hidden-md-down">{l s='Payment' d='Shop.Theme.Checkout'}</th> <th class="hidden-md-down">{l s='Status' d='Shop.Theme.Checkout'}</th> <th>{l s='Invoice' d='Shop.Theme.Checkout'}</th> <th> </th> </tr> </thead> <tbody> {foreach from=$orders item=order} <tr> <th scope="row">{$order.details.reference}</th> <td>{$order.details.order_date}</td> <td>{if $order.addresses.delivery.company !== ''}{$order.addresses.delivery.company}{else}{$order.addresses.delivery.lastname} {$order.addresses.delivery.firstname}{/if}</td> <td class="text-xs-right">{$order.totals.total.value}</td> <td class="hidden-md-down">{$order.details.payment}</td> <td> <span class="label label-pill {$order.history.current.contrast}" style="background-color:{$order.history.current.color}" > {$order.history.current.ostate_name} </span> </td> <td class="text-xs-center hidden-md-down"> {if $order.details.invoice_url} <a href="{$order.details.invoice_url}"><i class="material-icons"></i></a> {else} - {/if} </td> <td class="text-xs-center order-actions"> <a href="{$order.details.details_url}" data-link-action="view-order-details"> {l s='Details' d='Shop.Theme.Customeraccount'} </a> {if $order.details.reorder_url} <a href="{$order.details.reorder_url}">{l s='Reorder' d='Shop.Theme.Actions'}</a> {/if} </td> </tr> {/foreach} </tbody> </table> Il vous restera à traduire le terme "Delivered to". Evidemment vous sauvegardez bien le fichier avant de le modifier Link to comment Share on other sites More sharing options...
franckisys Posted June 19, 2017 Author Share Posted June 19, 2017 C'est super gentil, Par contre je modifie cela dans quel fichier ? Link to comment Share on other sites More sharing options...
BeComWeb Posted June 19, 2017 Share Posted June 19, 2017 themes/nom_du_theme/templates/customer/history.tpl 1 Link to comment Share on other sites More sharing options...
franckisys Posted June 19, 2017 Author Share Posted June 19, 2017 Super ca fonctionne ! Merci beaucoup pour cette aide... 1 Link to comment Share on other sites More sharing options...
BeComWeb Posted June 19, 2017 Share Posted June 19, 2017 De rien, pensez à passer le topic sur "[Résolu]" Link to comment Share on other sites More sharing options...
veve5960 Posted September 26, 2017 Share Posted September 26, 2017 Bonjour, désolé de réouvrir ce topic, mais en version 1.6, comment fait on ? Merci d'avance Hervé Link to comment Share on other sites More sharing options...
BeComWeb Posted September 26, 2017 Share Posted September 26, 2017 Bonjour, désolé de réouvrir ce topic, mais en version 1.6, comment fait on ? Merci d'avance Hervé C'était du code pour la 1.6... Link to comment Share on other sites More sharing options...
veve5960 Posted September 27, 2017 Share Posted September 27, 2017 Bonjour, Merci pour votre réponse, j'ai lu que 1.7 et de plus je n'ai pas le même code J'ai essayé en mettant <td>{$order.addresses.delivery.lastname}</td> a la place du moyen de paiement mais cela ne fonctionne pas Merci de ton aide Hervé <table id="order-list" class="table table-bordered footab"> <thead> <tr> <th class="first_item" data-sort-ignore="true">{l s='Order reference'}</th> <th class="item">{l s='Date'}</th> <th data-hide="phone" class="item">{l s='Total price'}</th> <th data-sort-ignore="false" data-hide="phone,tablet" class="item">{l s='Client'}</th> <th class="item">{l s='Status'}</th> <th data-sort-ignore="true" data-hide="phone,tablet" class="item">{l s='Invoice'}</th> <th data-sort-ignore="true" data-hide="phone,tablet" class="last_item"> </th> </tr> </thead> <tbody> {foreach from=$orders item=order name=myLoop} <tr class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if} {if $smarty.foreach.myLoop.index % 2}alternate_item{/if}"> <td class="history_link bold"> {if isset($order.invoice) && $order.invoice && isset($order.virtual) && $order.virtual} <img class="icon" src="{$img_dir}icon/download_product.gif" alt="{l s='Products to download'}" title="{l s='Products to download'}" /> {/if} <a class="color-myaccount" href="javascript:showOrder(1, {$order.id_order|intval}, '{$link->getPageLink('order-detail', true, NULL, "id_order={$order.id_order|intval}")|escape:'html':'UTF-8'}');"> {Order::getUniqReferenceOf($order.id_order)} </a> </td> <td data-value="{$order.date_add|regex_replace:"/[\-\:\ ]/":""}" class="history_date bold"> {dateFormat date=$order.date_add full=0} </td> <td class="history_price" data-value="{$order.total_paid}"> <span class="price"> {displayPrice price=$order.total_paid currency=$order.id_currency no_utf8=false convert=false} </span> </td> <!-- <td class="history_method">{$order.payment|escape:'html':'UTF-8'}</td> --> <td>{$order.addresses.delivery.lastname}</td> <td{if isset($order.order_state)} data-value="{$order.id_order_state}"{/if} class="history_state"> {if isset($order.order_state)} <span class="label{if isset($order.order_state_color) && Tools::getBrightness($order.order_state_color) > 128} dark{/if}"{if isset($order.order_state_color) && $order.order_state_color} style="background-color:{$order.order_state_color|escape:'html':'UTF-8'}; border-color:{$order.order_state_color|escape:'html':'UTF-8'};"{/if}> {$order.order_state|escape:'html':'UTF-8'} </span> {/if} </td> <td class="history_invoice"> {if (isset($order.invoice) && $order.invoice && isset($order.invoice_number) && $order.invoice_number) && isset($invoiceAllowed) && $invoiceAllowed == true} <a class="link-button" href="{$link->getPageLink('pdf-invoice', true, NULL, "id_order={$order.id_order}")|escape:'html':'UTF-8'}" title="{l s='Invoice'}" target="_blank"> <i class="icon-file-text large"></i>{l s='PDF'} </a> {else} - {/if} </td> <td class="history_detail"> <a class="btn btn-default button button-small" href="javascript:showOrder(1, {$order.id_order|intval}, '{$link->getPageLink('order-detail', true, NULL, "id_order={$order.id_order|intval}")|escape:'html':'UTF-8'}');"> <span> {l s='Details'}<i class="icon-chevron-right right"></i> </span> </a> {if isset($opc) && $opc} <a class="link-button" href="{$link->getPageLink('order-opc', true, NULL, "submitReorder&id_order={$order.id_order|intval}")|escape:'html':'UTF-8'}" title="{l s='Reorder'}"> {else} <a class="link-button" href="{$link->getPageLink('order', true, NULL, "submitReorder&id_order={$order.id_order|intval}")|escape:'html':'UTF-8'}" title="{l s='Reorder'}"> {/if} {if isset($reorderingAllowed) && $reorderingAllowed} <i class="icon-refresh"></i>{l s='Reorder'} {/if} </a> </td> </tr> {/foreach} </tbody> </table> Link to comment Share on other sites More sharing options...
BeComWeb Posted September 27, 2017 Share Posted September 27, 2017 Oui pardon c'était bien une solution pour la 1.7. Je regarde sur une 1.6 et je vous dis Link to comment Share on other sites More sharing options...
veve5960 Posted September 27, 2017 Share Posted September 27, 2017 Merci beaucoup pour votre aide ! Link to comment Share on other sites More sharing options...
BeComWeb Posted September 28, 2017 Share Posted September 28, 2017 Bonjour, Pour la 1.6 : 1. Créer un fichier appelé HistoryController.php dans override/controllers/front et insérer le contenu suivant <?php /* * 2007-2016 PrestaShop * * 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.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * 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 http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2016 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class HistoryController extends HistoryControllerCore { /** * Assign template vars related to page content * @see FrontController::initContent() */ public function initContent() { parent::initContent(); if ($orders = Order::getCustomerOrders($this->context->customer->id)) { foreach ($orders as &$order) { $myOrder = new Order((int)$order['id_order']); if (Validate::isLoadedObject($myOrder)) { $order['virtual'] = $myOrder->isVirtual(false); $DeliveryAddress = new Address((int)$order['id_address_delivery']); $order['delivered_to'] = (!Tools::isEmpty($DeliveryAddress->company)) ? $DeliveryAddress->company : $DeliveryAddress->lastname.' '.$DeliveryAddress->firstname; } } } $this->context->smarty->assign(array( 'orders' => $orders, 'invoiceAllowed' => (int)Configuration::get('PS_INVOICE'), 'reorderingAllowed' => !(bool)Configuration::get('PS_DISALLOW_HISTORY_REORDERING'), 'slowValidation' => Tools::isSubmit('slowvalidation') )); $this->setTemplate(_PS_THEME_DIR_.'history.tpl'); } } 2. Supprimer le fichier cache/class_index.php (aucun risque) 3. Sauvegarder le fichier themes/nom_du_theme/history.tpl 4. Remplacer son contenu par le code suivant {* * 2007-2016 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * 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 http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2016 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {capture name=path} <a href="{$link->getPageLink('my-account', true)|escape:'html':'UTF-8'}"> {l s='My account'} </a> <span class="navigation-pipe">{$navigationPipe}</span> <span class="navigation_page">{l s='Order history'}</span> {/capture} {include file="$tpl_dir./errors.tpl"} <h1 class="page-heading bottom-indent">{l s='Order history'}</h1> <p class="info-title">{l s='Here are the orders you\'ve placed since your account was created.'}</p> {if $slowValidation} <p class="alert alert-warning">{l s='If you have just placed an order, it may take a few minutes for it to be validated. Please refresh this page if your order is missing.'}</p> {/if} <div class="block-center" id="block-history"> {if $orders && count($orders)} <table id="order-list" class="table table-bordered footab"> <thead> <tr> <th class="first_item" data-sort-ignore="true">{l s='Order reference'}</th> <th class="item">{l s='Date'}</th> <th data-hide="phone" class="item">{l s='Total price'}</th> <th data-sort-ignore="true" data-hide="phone,tablet" class="item">{l s='Delivered to'}</th> <th data-sort-ignore="true" data-hide="phone,tablet" class="item">{l s='Payment'}</th> <th class="item">{l s='Status'}</th> <th data-sort-ignore="true" data-hide="phone,tablet" class="item">{l s='Invoice'}</th> <th data-sort-ignore="true" data-hide="phone,tablet" class="last_item"> </th> </tr> </thead> <tbody> {foreach from=$orders item=order name=myLoop} <tr class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if} {if $smarty.foreach.myLoop.index % 2}alternate_item{/if}"> <td class="history_link bold"> {if isset($order.invoice) && $order.invoice && isset($order.virtual) && $order.virtual} <img class="icon" src="{$img_dir}icon/download_product.gif" alt="{l s='Products to download'}" title="{l s='Products to download'}" /> {/if} <a class="color-myaccount" href="javascript:showOrder(1, {$order.id_order|intval}, '{$link->getPageLink('order-detail', true, NULL, "id_order={$order.id_order|intval}")|escape:'html':'UTF-8'}');"> {Order::getUniqReferenceOf($order.id_order)} </a> </td> <td data-value="{$order.date_add|regex_replace:"/[\-\:\ ]/":""}" class="history_date bold"> {dateFormat date=$order.date_add full=0} </td> <td class="history_price" data-value="{$order.total_paid}"> <span class="price"> {displayPrice price=$order.total_paid currency=$order.id_currency no_utf8=false convert=false} </span> </td> <td class="history_delivered_to">{$order.delivered_to|escape:'html':'UTF-8'}</td> <td class="history_method">{$order.payment|escape:'html':'UTF-8'}</td> <td{if isset($order.order_state)} data-value="{$order.id_order_state}"{/if} class="history_state"> {if isset($order.order_state)} <span class="label{if isset($order.order_state_color) && Tools::getBrightness($order.order_state_color) > 128} dark{/if}"{if isset($order.order_state_color) && $order.order_state_color} style="background-color:{$order.order_state_color|escape:'html':'UTF-8'}; border-color:{$order.order_state_color|escape:'html':'UTF-8'};"{/if}> {$order.order_state|escape:'html':'UTF-8'} </span> {/if} </td> <td class="history_invoice"> {if (isset($order.invoice) && $order.invoice && isset($order.invoice_number) && $order.invoice_number) && isset($invoiceAllowed) && $invoiceAllowed == true} <a class="link-button" href="{$link->getPageLink('pdf-invoice', true, NULL, "id_order={$order.id_order}")|escape:'html':'UTF-8'}" title="{l s='Invoice'}" target="_blank"> <i class="icon-file-text large"></i>{l s='PDF'} </a> {else} - {/if} </td> <td class="history_detail"> <a class="btn btn-default button button-small" href="javascript:showOrder(1, {$order.id_order|intval}, '{$link->getPageLink('order-detail', true, NULL, "id_order={$order.id_order|intval}")|escape:'html':'UTF-8'}');"> <span> {l s='Details'}<i class="icon-chevron-right right"></i> </span> </a> {if isset($opc) && $opc} <a class="link-button" href="{$link->getPageLink('order-opc', true, NULL, "submitReorder&id_order={$order.id_order|intval}")|escape:'html':'UTF-8'}" title="{l s='Reorder'}"> {else} <a class="link-button" href="{$link->getPageLink('order', true, NULL, "submitReorder&id_order={$order.id_order|intval}")|escape:'html':'UTF-8'}" title="{l s='Reorder'}"> {/if} {if isset($reorderingAllowed) && $reorderingAllowed} <i class="icon-refresh"></i>{l s='Reorder'} {/if} </a> </td> </tr> {/foreach} </tbody> </table> <div id="block-order-detail" class="unvisible"> </div> {else} <p class="alert alert-warning">{l s='You have not placed any orders.'}</p> {/if} </div> <ul class="footer_links clearfix"> <li> <a class="btn btn-default button button-small" href="{$link->getPageLink('my-account', true)|escape:'html':'UTF-8'}"> <span> <i class="icon-chevron-left"></i> {l s='Back to Your Account'} </span> </a> </li> <li> <a class="btn btn-default button button-small" href="{$base_dir}"> <span><i class="icon-chevron-left"></i> {l s='Home'}</span> </a> </li> </ul> 5. Aller dans le back-office pour traduire le terme "Delivered to" Et voilà, le tour est joué Link to comment Share on other sites More sharing options...
BeComWeb Posted October 6, 2017 Share Posted October 6, 2017 @veve5960 : Toujours pas de retour ? Vous avez essayé ? Ca a fonctionné ? 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