Good morning Christian!
Yes, it's definitely possible to include clickable links and external images in your Odoo quotations and documents that will appear properly in the generated PDFs.
For HTML Links in PDFs:
- Use HTML fields in your product descriptions or sale order lines
- In the form view, make sure the field uses the HTML widget:<field name="description_sale" widget="html"/>
- Then you can add links like this in the description: <a href="https://example.com">Visit our website</a> <a href="mailto:info@example.com">Contact us</a>
For External Images in PDFs:
- In the same HTML fields, you can add images:<img src="https://example.com/image.jpg" style="max-width: 300px; height: auto;"/>
- Make sure your Odoo server has internet access to load external images
Simple Implementation:
Instead of custom development, use the existing description fields in Odoo:
- Go to Products > Edit a product
- In the "Sales" tab, use the "Sales Description" field
- Click the HTML editor button and add your links and images
- This content will automatically appear in quotations and invoices
Important Notes:
- Odoo uses wkhtmltopdf for PDF generation, which supports HTML links and images
- External images need internet access from your server
- Links will be clickable in the generated PDF
Example HTML content to test: Visit our website: <a href="https://skyerp.net">SkyERP Solutions</a> Product image: <img src="https://via.placeholder.com/300x200" style="max-width: 300px;"/>
The easiest way is to use the existing HTML description fields in products or sale orders - no custom development needed!
Hope this helps!