Jump to content

Prefisso file PDF


Grafikamania

Recommended Posts

Ciao ragazzi qualcuno sa dove mettere le mani per poter aggiungere un prefisso testuale al file PDF che viene generato per la fattura, per l'rma, per il documento di trasporto?

Ad esempio quando si crea una fattura il nome del file consiste nel numero d'ordine ma io vorrei aggiungere un prefisso tipo fattura-#00001.pdf oppure rma-#00001.pdf

Attendo un vostro aiutino
Grazie

Link to comment
Share on other sites

Dovresti mettere mano a PDF.php (credo) e aggiungerci a mano per ogni opzione la scritta che vuoi.

Cerca le frasi del tipo

       return $pdf->Output(sprintf('% 0 6 d', self::$order->id).'.pdf', $mode);


E sostituiscile

       return $pdf->Output(sprintf('Fattura- % 0 6 d', self::$order->id).'.pdf', $mode);



Ovviamente va fatta per ognuna delle opzioni (la frase mi pare l'ho trovata sulla funzione che crea la fattura

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...