ertos982 Posted March 6, 2013 Share Posted March 6, 2013 Ciao ragazzi attualmente la fattura invoice genere questo testo: Data: 21/01/2013 Fattura: #IT000001 Dalle nuove normative bisogna inserire anche la data quindi vorrei modificare il testo in questo modo: Data: 21/01/2013 Fattura: #IT000001/2013 Come posso fare? Semplicemente ho inserito il valore /2013 nel file pdf--> header.tpl facendo cosi: {$title|escape:'htmlall':'UTF-8'}/2013 Pero nel 2014 le fatture di quest'anno devono sempre mantenedere il valore 2013, come posso fare? Come posso recuperare il valore ANNO dalla data ordine? Grazie Link to comment Share on other sites More sharing options...
Thesee Posted March 6, 2013 Share Posted March 6, 2013 Poi fare un override alla classeHTMLTemplateInvoice nel file classes/pdf/HTMLTemplateInvoice.php dove andrai a modificare la seguente riga da: $this->title = HTMLTemplateInvoice::l('Invoice ').' #'.Configuration::get('PS_INVOICE_PREFIX', $id_lang).sprintf('%06d', $order_invoice->number); a $this->title = HTMLTemplateInvoice::l('Invoice ').' #'.Configuration::get('PS_INVOICE_PREFIX', $id_lang).sprintf('%06d', $order_invoice->number).'/'.substr($order_invoice->date_add, 0, 4); Link to comment Share on other sites More sharing options...
ertos982 Posted March 6, 2013 Author Share Posted March 6, 2013 Grazie Thesee funziona perfettamente mentre come posso far visualizzare il codice fiscale nella fattura? Link to comment Share on other sites More sharing options...
Thesee Posted March 7, 2013 Share Posted March 7, 2013 Per il codice fiscale trovi l'impostazione sotto spedizioni, nazioni, selezioni italia e verifichi li ciao Link to comment Share on other sites More sharing options...
ertos982 Posted March 7, 2013 Author Share Posted March 7, 2013 Si ok sono riuscito a far visualizzare il codice fiscale andando su localiccazione-->nazioni-->italia e inserendo dni su Layout indirizzo 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