Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Quotation PDF Page 2 Description long override

Subscribe

Get notified when there's activity on this post

This question has been flagged
pdfquote
2 Replies
5501 Views
Avatar
Chris

I have a problem when I make a quotation with a product or services which the description is so long that the PDF generated will need two pages to display the description : it results that the product description is not cut properly on the second page of the PDF and appear to be over the company name ...

Problem is visibile here : https://imgur.com/a/EoFjfQg

how to solve this?


0
Avatar
Discard
Avatar
Chris
Author Best Answer

@ibrahim Where to try this ?

@ibrahim, can you specify where I can edit those line ? Is it in a python file or is it in a settings in the admin ? Where ?

Thanks

0
Avatar
Discard
Ibrahim Boudmir

replace the part you call your description field in the report with the code in my answer.

you probably have added something like this :

<span t-field="o.YourdescriptionField"/>

instead, add my code and tell me if it works for you.

Chris
Author

@Ibrahim, where do I find the area to modify ? In a python file or in a settings (where in this case?)

Chris
Author

@ibrahim, I suppose we are talking about this code: can you please highlight which line I should modify :

CODE:

<?xml version="1.0"?>

<t t-name="sale.report_saleorder_document">

<t t-call="report.external_layout">

<t t-set="doc" t-value="doc.with_context({'lang':doc.partner_id.lang})"/>

<div class="page">

<div class="oe_structure"/>

<div class="row">

<div class="col-xs-6">

<strong t-if="doc.partner_shipping_id == doc.partner_invoice_id">Invoicing and shipping address:</strong>

<strong t-if="doc.partner_shipping_id != doc.partner_invoice_id">Invoicing address:</strong>

<div t-field="doc.partner_invoice_id" t-options="{&quot;widget&quot;: &quot;contact&quot;, &quot;fields&quot;: [&quot;address&quot;, &quot;name&quot;, &quot;phone&quot;, &quot;fax&quot;], &quot;no_marker&quot;: True, &quot;phone_icons&quot;: True}"/>

<p t-if="doc.partner_invoice_id.vat">VAT: <span t-field="doc.partner_invoice_id.vat"/></p>

<div t-if="doc.partner_shipping_id != doc.partner_invoice_id" class="mt8">

<strong>Shipping address:</strong>

<div t-field="doc.partner_shipping_id" t-options="{&quot;widget&quot;: &quot;contact&quot;, &quot;fields&quot;: [&quot;address&quot;, &quot;name&quot;, &quot;phone&quot;, &quot;fax&quot;], &quot;no_marker&quot;: True, &quot;phone_icons&quot;: True}"/>

<p t-if="doc.partner_shipping_id.vat">VAT: <span t-field="doc.partner_shipping_id.vat"/></p>

</div>

</div>

<div class="col-xs-5 col-xs-offset-1">

<div t-field="doc.partner_id" t-options="{&quot;widget&quot;: &quot;contact&quot;, &quot;fields&quot;: [&quot;address&quot;, &quot;name&quot;], &quot;no_marker&quot;: True}"/>

</div>

</div>

<h2>

<span t-if="doc.state not in ['draft','sent']">Order # </span>

<span t-if="doc.state in ['draft','sent']">Quotation # </span>

<span t-field="doc.name"/>

</h2>

<div class="row mt32 mb32" id="informations">

<div t-if="doc.client_order_ref" class="col-xs-3">

<strong>Your Reference:</strong>

<p t-field="doc.client_order_ref"/>

</div>

<div t-if="doc.date_order" class="col-xs-3">

<strong t-if="doc.state not in ['draft','sent']">Date Ordered:</strong>

<strong t-if="doc.state in ['draft','sent']">Quotation Date:</strong>

<p t-field="doc.date_order"/>

</div>

<div t-if="doc.user_id.name" class="col-xs-3">

<strong>Salesperson:</strong>

<p t-field="doc.user_id"/>

</div>

<div name="payment_term" t-if="doc.payment_term_id" class="col-xs-3">

<strong>Payment Terms:</strong>

<p t-field="doc.payment_term_id"/>

</div>

</div>

<!-- Is there a discount on at least one line? -->

<t t-set="display_discount" t-value="any([l.discount for l in doc.order_line])"/>

<t t-foreach="doc.order_lines_layouted()" t-as="page">

<table class="table table-condensed">

<thead>

<tr>

<th>Description</th>

<th class="text-right">Quantity</th>

<th class="text-right">Unit Price</th>

<th t-if="display_discount" class="text-right" groups="sale.group_discount_per_so_line">Disc.(%)</th>

<th class="text-right">Taxes</th>

<th class="text-right" groups="sale.group_show_price_subtotal">Price</th>

<th class="text-right price_tax_included" groups="sale.group_show_price_total">Total Price</th>

</tr>

</thead>

<tbody class="sale_tbody">

<t t-foreach="page" t-as="layout_category">

<t t-if="layout_category_size &gt; 1 or page_size &gt; 1" groups="sale.group_sale_layout">

<tr class="active">

<td colspan="7" style="font-weight: bold; border-bottom: 1px solid black;">&amp;bull;

<t t-esc="layout_category['name']"/>

</td>

</tr>

</t>

<!-- Lines associated -->

<t t-foreach="layout_category['lines']" t-as="l">

<tr>

<td><span t-field="l.name"/></td>

<td class="text-right">

<span t-field="l.product_uom_qty"/>

<span t-field="l.product_uom" groups="product.group_uom"/>

</td>

<td class="text-right">

<span t-field="l.price_unit"/>

</td>

<td t-if="display_discount" class="text-right" groups="sale.group_discount_per_so_line">

<span t-field="l.discount"/>

</td>

<td class="text-right">

<span t-esc="', '.join(map(lambda x: (x.description or x.name), l.tax_id))"/>

</td>

<td class="text-right" groups="sale.group_show_price_subtotal">

<span t-field="l.price_subtotal" t-options="{&quot;widget&quot;: &quot;monetary&quot;, &quot;display_currency&quot;: doc.pricelist_id.currency_id}"/>

</td>

<td class="text-right" groups="sale.group_show_price_total">

<span t-field="l.price_total" t-options="{&quot;widget&quot;: &quot;monetary&quot;, &quot;display_currency&quot;: doc.pricelist_id.currency_id}"/>

</td>

</tr>

</t>

<t t-if="(layout_category_size &gt; 1 or page_size &gt; 1) and layout_category['subtotal']" groups="sale.group_sale_layout">

<tr class="text-right">

<td colspan="6">

<strong>Subtotal: </strong>

<t t-set="subtotal" t-value="sum(line.price_subtotal for line in layout_category['lines'])"/>

<span t-esc="subtotal" t-options="{'widget': 'monetary', 'display_currency': doc.pricelist_id.currency_id}"/>

</td>

</tr>

</t>

</t>

</tbody>

</table>

<t t-if="page_index &lt; page_size - 1" groups="sale.group_sale_layout">

<p style="page-break-before:always;"> </p>

</t>

</t>

<div class="row" name="total">

<div class="col-xs-4 pull-right">

<table class="table table-condensed">

<tr class="border-black">

<td><strong>Total Without Taxes</strong></td>

<td class="text-right">

<span t-field="doc.amount_untaxed" t-options="{&quot;widget&quot;: &quot;monetary&quot;, &quot;display_currency&quot;: doc.pricelist_id.currency_id}"/>

</td>

</tr>

<t t-foreach="doc._get_tax_amount_by_group()" t-as="amount_by_group">

<tr>

<td><span t-esc="amount_by_group[0] or 'Taxes'"/></td>

<td class="text-right">

<span t-esc="amount_by_group[1]" t-options="{&quot;widget&quot;: &quot;monetary&quot;, &quot;display_currency&quot;: doc.pricelist_id.currency_id}"/>

</td>

</tr>

</t>

<tr class="border-black">

<td><strong>Total</strong></td>

<td class="text-right">

<span t-field="doc.amount_total" t-options="{&quot;widget&quot;: &quot;monetary&quot;, &quot;display_currency&quot;: doc.pricelist_id.currency_id}"/>

</td>

</tr>

</table>

</div>

</div>

<p t-field="doc.note"/>

<p t-if="doc.payment_term_id.note">

<span t-field="doc.payment_term_id.note"/>

</p>

<p id="fiscal_position_remark" t-if="doc.fiscal_position_id and doc.fiscal_position_id.note">

<strong>Fiscal Position Remark:</strong>

<span t-field="doc.fiscal_position_id.note"/>

</p>

<div class="oe_structure"/>

</div>

</t>

</t>

/CODE

Chris
Author

Problem comes precisely from this : <tr>

<th>Description</th>

<th class="text-right">Quantity</th>

<th class="text-right">Unit Price</th>

<th t-if="display_discount" class="text-right" groups="sale.group_discount_per_so_line">Disc.(%)</th>

<th class="text-right">Taxes</th>

<th class="text-right" groups="sale.group_show_price_subtotal">Price</th>

<th class="text-right price_tax_included" groups="sale.group_show_price_total">Total Price</th>

</tr>

</thead>

This get overlap on the second page by the product description which continue from page 1 to page 2

Chris
Author

Problem is visible here: https://imgur.com/a/EoFjfQg

Avatar
Ibrahim Boudmir
Best Answer

Hi, 
can you try this : 

<div style="page-break-inside: avoid;margin-top:5%">

     <t t-if='YourCommentField'>

          <p style="font-size:15px;">              

                <span t-field="YourCommentField"/>

          </p>

     </t>

let me now what if this works for you.

Thanks.

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
pfd quote
pdf quote
Avatar
Avatar
2
Dec 23
1689
Quote Builder With Custom Rental Report (Studio)
pdf
Avatar
0
Oct 25
524
Quote Builder With Custom Rental Report (Studio)
pdf
Avatar
0
Oct 25
4
How to edit the header of the quote template Solved
pdf
Avatar
Avatar
Avatar
2
Aug 25
1312
Customize Report problem Solved
pdf
Avatar
Avatar
Avatar
3
Aug 25
1629
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now