m.fontana Posted March 1, 2022 Share Posted March 1, 2022 Ciao, sto cercando di cambiare la data della fattura: invece di riportare la data di creazione ho bisogno che invece sia riportata la data del pagamento. Nel file invoice.summary-tab.tpl ho trovato questa riga ma non capisco come modificare i valori relativi alla data <tr> <td class="center small white">{$title|escape:'html':'UTF-8'}</td> <td class="center small white">{dateFormat date=$order->invoice_date full=0}</td> <td class="center small white">{$order->getUniqReference()}</td> <td class="center small white">{dateFormat date=$order->dateOfPayment full=0}</td> {if $addresses.invoice->vat_number} <td class="center small white"> {$addresses.invoice->vat_number} </td> {/if} </tr> Qualche idea su come fare? Grazie Matteo Link to comment Share on other sites More sharing options...
fedesib Posted March 2, 2022 Share Posted March 2, 2022 Ciao, la classe che genera i dati da mettere nel template che hai trovato è classes/pdf/HTMLTemplateInvoice.php, da qui probabilmente riesci a capire che informazioni puoi avere a disposizione. Per vedere cosa ti viene passato nella variabile $order del template puoi provare ad usare {$order|@print_r} (oppure farti mandare una mail con i dati nel file PHP). Buon pomeriggio, Federica 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