Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Quotation PDF Page 2 Description long override

Subscriure's

Get notified when there's activity on this post

This question has been flagged
pdfquote
2 Respostes
5552 Vistes
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
Descartar
Avatar
Chris
Autor 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
Descartar
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
Autor

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

Chris
Autor

@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
Autor

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
Autor

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
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
pfd quote
pdf quote
Avatar
Avatar
2
de des. 23
1715
Quote Builder With Custom Rental Report (Studio)
pdf
Avatar
0
d’oct. 25
596
Quote Builder With Custom Rental Report (Studio)
pdf
Avatar
0
d’oct. 25
4
How to edit the header of the quote template Solved
pdf
Avatar
Avatar
Avatar
2
d’ag. 25
1393
Customize Report problem Solved
pdf
Avatar
Avatar
Avatar
3
d’ag. 25
1712
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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