Albarracín Posted February 9, 2022 Share Posted February 9, 2022 (edited) Hola, buenos días a todos y gracias de antemano. Me han solicitado en mi empresa que añada el id del cliente al albarán y sólo al albarán, pero no se como hacerlo y no encuentro la manera. ¿Podría alguien ayudarme? Tengo prestashop 1.7 Gracias. Edited February 9, 2022 by Albarracín (see edit history) Link to comment Share on other sites More sharing options...
Pixefora D Posted February 10, 2022 Share Posted February 10, 2022 (edited) Hola @Albarracín, pues depende de donde lo quieras poner, pero por ejemplo puedes editar el archivo pdf/delivery-slip.summary-tab.tpl y si por ejemplo tienes esto: <table id="summary-tab" width="100%"> <tr> <th class="header small" valign="middle">{l s='Order Reference' d='Shop.Pdf' pdf='true'}</th> <th class="header small" valign="middle">{l s='Order Date' d='Shop.Pdf' pdf='true'}</th> {if isset($carrier)} <th class="header small" valign="middle">{l s='Carrier' d='Shop.Pdf' pdf='true'}</th> {/if} </tr> <tr> <td class="center small white">{$order->getUniqReference()}</td> <td class="center small white">{dateFormat date=$order->date_add full=0}</td> {if isset($carrier)} <td class="center small white">{$carrier->name}</td> {/if} </tr> </table> Cambialo por esto, fijate en la llamada a $order->id_customer: <table id="summary-tab" width="100%"> <tr> <th class="header small" valign="middle">{l s='Order Reference' d='Shop.Pdf' pdf='true'}</th> <th class="header small" valign="middle">{l s='Order Date' d='Shop.Pdf' pdf='true'}</th> {if isset($carrier)} <th class="header small" valign="middle">{l s='Carrier' d='Shop.Pdf' pdf='true'}</th> {/if} <th class="header small" valign="middle">{l s='Customer' d='Shop.Pdf' pdf='true'}</th> </tr> <tr> <td class="center small white">{$order->getUniqReference()}</td> <td class="center small white">{dateFormat date=$order->date_add full=0}</td> {if isset($carrier)} <td class="center small white">{$carrier->name}</td> {/if} <td class="center small white">{$order->id_customer}</td> </tr> </table> No está testeado. OJO, hazte un backup. Edited February 10, 2022 by Pixefora D (see edit history) Link to comment Share on other sites More sharing options...
Albarracín Posted February 10, 2022 Author Share Posted February 10, 2022 Muchas gracias Pixefora; lo probaré en cuanto tenga un segundo y te comento como me ha ido. Muchas gracias por responder. Link to comment Share on other sites More sharing options...
Albarracín Posted February 10, 2022 Author Share Posted February 10, 2022 (edited) Hola buenos días. Lo utilicé como me mostraste, pero en ese archivo no me funcionaba, no se veía nada en el albarán. De todas maneras recogí tu variable y la utilicé en el archivo pdf/delivery-slip.tpl y funcionó perfectamente. Muchas gracias por todo. Saludos. Edited February 10, 2022 by Albarracín (see edit history) Link to comment Share on other sites More sharing options...
Pixefora D Posted February 10, 2022 Share Posted February 10, 2022 Genial, por favor, edita el asunto del POST y añade [SOLUCIONADO] Link to comment Share on other sites More sharing options...
Albarracín Posted February 11, 2022 Author Share Posted February 11, 2022 (edited) Hecho, muchas gracias por todo. Edited February 11, 2022 by Albarracín (see edit history) 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