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

How i can print complete page in next after certain record in qweb report?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
5 Respostes
8303 Vistes
Avatar
Usman Farzand

i have multi-pal line of item what i need is when product line reached 4 of line

page break and show 4th item in next page with complete header and footer

is it possible ?



First Page



Second Page





this is current situation

0
Avatar
Descartar
Avatar
Kanak Infosystems LLP
Best Answer

Hello Usman,

you have to set a counter.. on every line,
you can use index to count in the loop...
for example :

<div t-if="line_index % 4 == 0" style="page-break-after: always;">
    <br/>
</div>

this will give you the page break after the loop index reaches 4...


if this doesn't work you can simply set a boolean field which can be computed to be true after every 4 lines.. if the field is true, then add the page break code...



Best Regards

Team Kanak

Skype : kanakinfosystems

email : sales@kanakinfosystems.com

1
Avatar
Descartar
Usman Farzand
Autor

no effect :-/

Kanak Infosystems LLP

share your code files plz

Usman Farzand
Autor

no effect :-/

Usman Farzand
Autor

<table class="table table-bordered" style="margin-top: 50px;font-size:20px;width:100%;">

<t t-set="i" t-value="1"/>

<t t-set="val" t-value="0"/>

<tbody class="gst_tbody">

<tr t-foreach="o.order_line" t-as="line">

<td class="text-center" style="width:6%;">

<span t-esc="i"/>

<t t-set="i" t-value="i+1"/>

</td>

<td class="text-center" style="width:16%;">

<span t-field="line.product_id.barcode"/>

</td>

<td class="text-left" style="width:38%;">

<span t-field="line.product_id.name"/>

</td>

<td class="text-left" style="width:9%;">

<span t-field="line.product_uom.name"/>

</td>

<td class="text-center" style="width:10%;">

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

</td>

<td class="text-center" style="width:10%;">

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

</td>

<!-- <td class="text-center" >

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

</td> -->

<td class="text-right">

<span t-field="line.price_subtotal" style="width:10%;"/>

</td>

<div t-if="line_index % 4 == 0" style="page-break-after: always;">

<br/>

</div>

</tr>

</tbody>

</table>

Avatar
Usman Farzand
Autor Best Answer

<table class="table table-bordered" style="margin-top: 50px;font-size:20px;width:100%;">
                  
                            <t t-set="i" t-value="1"/>
                            <t t-set="val" t-value="0"/>
                            <tbody class="gst_tbody">
                               
                               
                                       
                                        <tr t-foreach="o.order_line" t-as="line">
                                           
                                           
                                           
                                                <td class="text-center" style="width:6%;">
                                                     <span t-esc="i"/>
                                                     <t t-set="i" t-value="i+1"/>
                                                </td>
                                                <td class="text-center" style="width:16%;">
                                                    <span t-field="line.product_id.barcode"/>
                                                </td>

                                                <td class="text-left" style="width:38%;">
                                                    <span t-field="line.product_id.name"/>
                                                </td>
                                                 <td class="text-left" style="width:9%;">
                                                    <span t-field="line.product_uom.name"/>
                                                </td>
                                                <td class="text-center" style="width:10%;">
                                                    <span t-field="line.product_uom_qty"/>
                                                </td>
                                                <td class="text-center" style="width:10%;">
                                                    <span t-field="line.price_unit"/>
                                                </td>
                                                <!-- <td  class="text-center" >
                                                    <span t-field="line.discount"/>
                                                </td> -->
                                               
                                                <td class="text-right">
                                                    <span t-field="line.price_subtotal" style="width:10%;"/>
                                                </td>
                                           
                                             <div t-if="line_index % 4 == 0" style="page-break-after: always;">
           <br/>
                    </div>
                                          
                                           
                                        </tr>
                                    
                                  
                               
                        </tbody>
                        </table>

0
Avatar
Descartar
Kanak Infosystems LLP

Hello Usman,

please Try this solution,

1. create This method in Sale Order Object.

def _get_order_line(self):

cnt_number_of_page = len(self.invoice_line_ids) / 4

number_of_page = round(cnt_number_of_page) + 1

line = self.env['sale.order.line']

lst = {page: line for page in range(number_of_page)}

order_lines = self.order_line

for key in lst.keys():

for line in order_lines:

if len(lst[key]) < 4:

lst[key] |= line

order_lines = order_lines - line

else:

break

return lst

2. Write this code in your report xml

<t t-set="order_lines" t-value="o._get_order_line()"/>

<t t-foreach="order_lines.keys()" t-as="key">

<t t-set="lines" t-value="order_lines[key]"/>

<table class="table table-sm o_main_table" name="invoice_line_table">

<thead>

<tr>

<th>No</th>

<th>Barcode</th>

<th>Name</th>

<th>Uom</th>

<th>Qty</th>

<th>Unit</th>

<th>Discount</th>

<th>Price Subtotal</th>

</tr>

</thead>

<tbody class="gst_tbody">

<tr t-foreach="o.order_line" t-as="line">

<td class="text-center" style="width:6%;">

<span t-esc="i"/>

<t t-set="i" t-value="i+1"/>

</td>

<td class="text-center" style="width:16%;">

<span t-field="line.product_id.barcode"/>

</td>

<td class="text-left" style="width:38%;">

<span t-field="line.product_id.name"/>

</td>

<td class="text-left" style="width:9%;">

<span t-field="line.product_uom.name"/>

</td>

<td class="text-center" style="width:10%;">

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

</td>

<td class="text-center" style="width:10%;">

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

</td>

<!-- <td class="text-center" >

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

</td> -->

<td class="text-right">

<span t-field="line.price_subtotal" style="width:10%;"/>

</td>

</tr>

</tbody>

</table>

</t>

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

</t>

Thanks

Jornald

Hello Kanak. I have same issues in my custom model.I create with report in wizard.

@api.model

def _get_report_values(self, docids, data=None):

report = self.env['ir.actions.report']._get_report_from_name(

'sc_thai_wht_pnd53_report.pnd53_summary')

date_from = data['form']['date_from']

date_to = data['form']['date_to']

partner_id = data['form']['partner_id']

original_copy = data['form']['original_copy']

copy_count = data['form']['copy_count']

month_from = data['form']['month_from']

with_attachments = data['form']['with_attachments']

if partner_id:

domain = [('supplier_partner_id','=',partner_id),('date','>=',date_from),('date','<=',date_to),('income_tax_form','=','pnd53'),('state','=','done')]

else:

domain = [('date','>=',date_from),('date','<=',date_to),('income_tax_form','=','pnd53'),('state','=','done')]

wht_certs = self.env['withholding.tax.cert'].search(domain)

pages_count = int(len(wht_certs)/6) + 1 if len(wht_certs) % 6 > 0 else int(len(wht_certs)/6)

return {

'doc_ids': docids,

'pages_count': pages_count,

'pages': range(pages_count),

'wht_certs': wht_certs,

'doc_model': report.model,

'docs': self.env.user.company_id,

'report_type': data.get('report_type') if data else '',

'company': self.env.user.company_id,

}

How can I fix for split 6 row in each page.

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