Jump to content

Inserire Solo Anno In Fattura


ertos982

Recommended Posts

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

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...