Hi everyone!
I'm new at Odoo and I'm wondering how to edit Quotation Template (not online quotation template but PDF).
Many thanks,
MY
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi everyone!
I'm new at Odoo and I'm wondering how to edit Quotation Template (not online quotation template but PDF).
Many thanks,
MY
Thanks to Yenthe you'll can study this precious little tutorial: http://www.odoo.yenthevg.com/inheriting-and-modifying-qweb-reports/
To edit PDF templates you can inherit template view of the PDF report and make necessary changes
I'm posting a sample code to inherit sale order template
<?xml version="1.0"?>
<odoo>
<template id="report_saleorder_document_inherit" inherit_id="sale.report_saleorder_document">
<xpath expr="//div[@name='payment_term']" position="after">
<div>
<strong>Some text</strong>
<p t-field="doc.name"/>
</div>
</xpath>
</template>
</odoo>
you may refer this link
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up