I am trying to fix the font problem on emailed PS/RFQ pdf's but cannot locate where the css is stored for them as I am assuming that it is css driven.
I cannot upload an example of what I am seeing but it seems that all the text fonts are too large.
for example the shipto box only shows the last 3 lines of the address, the "your company" address is fine but obscures the Invoice address
The font size for the "Request for Quotation #PO0001" header is about 30pt which is far too large
I thought this might be a Centos 8 thing so spun up an Ubuntu 18.04 server using the deb file but its the same on that server as well
System used:
Odoo 13
Centos 8
Ubuntu 18.04
Background: I have searched but can only find how to create a PO/RFQ from sales, how to create a RFQ/PO template but nothing on how to change the font size displayed in the resultant pdf.
any suggestions is appreciated
Have updated Ossi's suggested link with solution
Modify this file for purchase orders Technical -> Views -> report_purchaseorder_document Locate the section
Request for Quotation #
<h4 t-if="o.state in ['sent', 'to approve']">Purchase Order #<span t-field="o.name"/></h4>
<h4 t-if="o.state in ['purchase', 'done']">Purchase Order #<span t-field="o.name"/></h4>
<h4 t-if="o.state == 'cancel'">Cancelled Purchase Order #<span t-field="o.name"/></h4>
For RFQ modify views -> report_purchasequotation_document Request for Quotation
Note these header tags were h2's