kinkibcn Posted January 21, 2015 Share Posted January 21, 2015 (edited) Hola, estoy usando PS 1.6.0.11 y me gustaría cambiar el nombre del archivo pdf que se genera al imprimir una factura. En la versión de PS estándar, si tengo el pedido nº 3567 con la factura nº 1578 e imprimo la factura me genera un pdf con este nombre 1578.pdf Mi idea sería la de poner como nombre del archivo (<nº factura>-<nº pedido>.pdf, que en ejemplo anterior quedaría: 1578-3567.pdf ¿ Sabe alguien como podría hacerlo ?. Gracias y saludos Edited January 25, 2015 by ventura (see edit history) Link to comment Share on other sites More sharing options...
ventura Posted January 25, 2015 Share Posted January 25, 2015 Edita el archivo classes/pdf/HTMLTemplateInvoice.php Tienes esto justo al final return Configuration::get('PS_INVOICE_PREFIX', Context::getContext()->language->id, null, $this->order->id_shop).sprintf('%06d', $this->order_invoice->number).'.pdf'; Dejalo asi return sprintf($this->order_invoice->number). '-'. $this->order->id.'.pdf'; 1 Link to comment Share on other sites More sharing options...
kinkibcn Posted January 25, 2015 Author Share Posted January 25, 2015 Hola Ventura ... ya está solucionado. ¡¡¡ MUCHAS GRACIAS POR TU AYUDA !!! Link to comment Share on other sites More sharing options...
ventura Posted January 25, 2015 Share Posted January 25, 2015 De nada, un placer Doy el tema por solucionado y procedo a cerrar el hilo Link to comment Share on other sites More sharing options...
Recommended Posts