跳至內容
選單
此問題已被標幟
2 回覆
221 瀏覽次數

Good morning!

I start trying implement odoo and want to use links and external picture links in the quotations/documents. How i can activate that <a href=""></a> will be shown on ready pdf as a link and <img src=""> will shown as ready images? Is that possible?
Thanks for help!
Christian

頭像
捨棄
最佳答案

Hi,

Please refer to the code below:

<t t-name="my_module.report_example">
<t t-call="web.html_container">
<t t-foreach="docs" t-as="o">
<div>
<h2>Hello, <t t-esc="o.name"/></h2>
<p>Click here to visit:
<a href="https://www.odoo.com">Odoo Website</a></p>
<p>External Image:</p>
<img src="https://example.com/logo.png" style="width:200px;"/>
</div>
</t>
</t>
</t>

Hope it helps.

頭像
捨棄
最佳答案

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:

  1. Use HTML fields in your product descriptions or sale order lines
  2. In the form view, make sure the field uses the HTML widget:<field name="description_sale" widget="html"/>
  3. 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:

  1. In the same HTML fields, you can add images:<img src="https://example.com/image.jpg" style="max-width: 300px; height: auto;"/>
  2. 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!

頭像
捨棄