SergioE Posted October 14, 2015 Share Posted October 14, 2015 (edited) Buenas, Me gustaría saber que maneras hay de adjuntar un pdf junto con la factura cuando el estado del pedido es aceptado por ejemplo, o poner un link en la plantilla de email que vincule para descargar el PDF de las condiciones de compra.. Segun la agencia del consumidor, es obligatorio entregar dicha documentación y estoy en investigación de como realizar este adjunto. Gracias! Edited February 9, 2017 by SergioE (see edit history) Link to comment Share on other sites More sharing options...
tuk66 Posted October 19, 2015 Share Posted October 19, 2015 Usted puede agregar un enlace al correo electrónico de confirmación.Yo no parchear código PrestaShop enviar dos archivos adjuntos PDF al mismoUsted puede enviar un archivo PDF adjunto donde las condiciones siguen la factura en la siguiente página (módulo M4 PDF Extensions puede hacerlo fácilmente). You can add a link to the confirmation email. I wouldn't patch PrestaShop code to send two PDF attachments at one You can send one PDF attachment where the conditions follow the invoice on next pages (M4 PDF Extensions module can do it easily). Link to comment Share on other sites More sharing options...
SergioE Posted October 19, 2015 Author Share Posted October 19, 2015 Un enlace de descargar hacia algun archivo que tenga en mi carpeta de prestashop sirve? Si es asi, donde tendria que poner el pdf y el codigo como seria? Gracias! Link to comment Share on other sites More sharing options...
tuk66 Posted October 19, 2015 Share Posted October 19, 2015 Tyr algo como <a href="http://www.my_domain.com/my_pdf_file.pdf">Mi PDF</a> en el /mails/*/order_conf.html y order_conf.txt archivos (para todos los idiomas). Tyr something like <a href="http://www.my_domain.com/my_pdf_file.pdf">My PDF</a> in the /mails/*/order_conf.html and order_conf.txt files (for all languages). Link to comment Share on other sites More sharing options...
adda.solutions Posted December 15, 2016 Share Posted December 15, 2016 editar fichero classes/PaymentModule.php ( buscar comentario // Join PDF invoice) #761 sustituir en linea #770 {else}: antes: $file_attachement = null; ahora: $file_attachement['content'] = Tools::file_get_contents(_PS_ROOT_DIR_.'/url_del_archivo'); $file_attachement['name'] = 'nombre_del_archivo'; $file_attachement['mime'] = 'application/pdf'; Link to comment Share on other sites More sharing options...
Recommended Posts