Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Discuss
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

Create a custom report in Odoo12. Error "index out of range". How to solve it?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
reportsOdoo12.0
1 Balas
16314 Tampilan
Avatar
Paulo Matos

Dear all,

Once again I need your help and this time with Qweb Reports in Odoo12.
I have tried to read the Odoo documentation about custom qweb reports but it is not very clear.
Also, downloaded some modules with integrated reports to try to understand they're structure (accounting_pdf_reports), but this also some difficult for me to understand at this level.

I have found a simple report for Odoo v11, and I am trying to change it to v12 and since it is a simple report, perhaps following the example will help me creating my first custom report.

The problem is that at a specific stage (when I print the report) I am getting an "IndexError: list index out of range" error.

The report files code:

1. PY:

class AttendanceRecapReportWizard(models.TransientModel):
    _name = 'attendance.recap.report.wizard'
    date_start = fields.Date(string="Start Date", required=True, default=fields.Date.today)
    date_end = fields.Date(string="End Date", required=True, default=fields.Date.today)

    @api.multi    def get_report(self):
        data = {            'ids': self.ids,
            'model': self._name,
            'form': {'date_start': self.date_start,'date_end': self.date_end,
            },
        }
        return self.env.ref('report_demo.recap_report').report_action(self, data=data)

    class ReportAttendanceRecap(models.AbstractModel):
    _name = 'report_demo.attendance_recap_report_view'

    @api.model
    def get_report_values(self, docids, data=None):
        date_start = data['form']['date_start']
        date_end = data['form']['date_end']
        date_start_obj = datetime.strptime(date_start, DATE_FORMAT)
        date_end_obj = datetime.strptime(date_end, DATE_FORMAT)
        date_diff = (date_end_obj - date_start_obj).days + 1
        docs = []
        employees = self.env['hr.employee'].search([], order='name asc')
        for employee in employees:
            presence_count = self.env['hr.attendance'].search_count([
                ('employee_id', '=', employee.id),
                ('check_in', '>=', date_start_obj.strftime(DATETIME_FORMAT)),
                ('check_out', '<=', date_end_obj.strftime(DATETIME_FORMAT)),
            ])
            absence_count = date_diff - presence_count
            docs.append({
                'employee': employee.name,
                'presence': presence_count,
                'absence': absence_count,
            })
        return {
            'doc_ids': data['ids'],
            'doc_model': data['model'], 
           'date_start': date_start,
            'date_end': date_end,
            'docs': docs,
            }

2. The view, action and menu item:

    <record model="ir.ui.view" id="attendance_recap_report_wizard">
        <field name="name">HR Attendance Custom Recap Report</field>
        <field name="model">attendance.recap.report.wizard</field>
        <field name="type">form</field>
        <field name="arch" type="xml">
            <form string="Attendance Recap Report">
                <group>
                    <group>
                        <field name="date_start"/>
                    </group>
                    <group>
                        <field name="date_end"/>
                    </group>
                </group>
                <footer>
                    <button name="get_report" string="Get Report" type="object" class="oe_highlight"/>
                    <button string="Cancel" special="cancel"/>
                </footer>
            </form>
        </field>
    </record>
    <act_window id="action_attendance_recap_report_wizard"
                name="Attendance Recap Report"
                res_model="attendance.recap.report.wizard"
                view_mode="form"
                target="new"/>
    <menuitem action="action_attendance_recap_report_wizard"
              id="menu_attendance_report_wizard"
              parent="hr_attendance.menu_hr_attendance_report"/>

3. The report id and template:

    <report id="recap_report"
            model="attendance.recap.report.wizard"
            string="Attendance Recap Report"
            report_type="qweb-pdf"
            name="report_demo.attendance_recap_report_view"
            paperformat="paperformat_attendance_recap_report"
            menu="False"/>

    <template id="attendance_recap_report_view">
        <div class="header" style="border-bottom: 2px solid black">
            <h3 class="text-center">Attendance Recap Report</h3>
            <h4 class="text-center">
                <strong>From</strong>:
                <t t-esc="date_start"/>
                <strong>To</strong>:
                <t t-esc="date_end"/>
            </h4>
        </div>
    </template>

The full error I get is:

Odoo Server Error
Traceback (most recent call last):
  File "c:\odoo12\addons\web\controllers\main.py", line 1674, in report_download
    response = self.report_routes(reportname, converter=converter, **dict(data))
  File "C:\odoo12\odoo\http.py", line 517, in response_wrap
    response = f(*args, **kw)
  File "c:\odoo12\addons\web\controllers\main.py", line 1611, in report_routes
    pdf = report.with_context(context).render_qweb_pdf(docids, data=data)[0]
  File "c:\odoo12\odoo\addons\base\models\ir_actions_report.py", line 694, in render_qweb_pdf
    bodies, html_ids, header, footer, specific_paperformat_args = self.with_context(context)._prepare_html(html)
  File "c:\odoo12\odoo\addons\base\models\ir_actions_report.py", line 316, in _prepare_html
    body_parent = root.xpath('//main')[0]
IndexError: list index out of range


Can anyone help me solve this error?
Is there some tutorial that helps me develop custom reports for Odoo v12?

Thank you all once again
Best regards

2
Avatar
Buang
Sehrish

QWEB reporting tips:

1- https://goo.gl/tg2Zyp

2- https://goo.gl/KZEo8X

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Jawaban Terbai

Hi,
Please update the code like this,

<template id="attendance_recap_report_view">
<t t-call="web.html_container">
<t t-call="web.internal_layout"
>
<div class="header" style="border-bottom: 2px solid black">
<h3 class="text-center">Attendance Recap Report</h3>
<h4 class="text-center">
<strong>From</strong>:
<t t-esc="date_start"/>
<strong>To</strong>:
<t t-esc="date_end"/>
</h4>
</div>
</t>
</t>
</template>


Thanks

10
Avatar
Buang
Paulo Matos
Penulis

Thank you very much @Cybrosys

David Sicard Sotaquira

Bro, pero entonces porqué razón toca obligatoriamente usar el html_container y el web.internal_layout? yo me acuerdo que en la community V8 no era necesario y uno podía mas facil customizar el header y el footer dentro del mismo reporte. Créeme que se me ha hecho muy dificil poder customizar un header y sobre todo el footer dentro de un reporte desde 0.

Dèèpak ahir

Thanks @Cybrosys !

Serge Mercado

This was posted a year ago, but this one actually helped me a lot. A duplicate t-call on web.external_layout cause the problem so I changed the outer one to web.html_container. Thank you!

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Code for page number in Body of Pdf report
reports
Avatar
Avatar
Avatar
2
Okt 25
3401
How to increase the width of a column on odoo quotation PDF?
reports
Avatar
Avatar
1
Okt 25
1217
Odoo Online (SaaS 18.4 Enterprise) – How to modify invoice report header without affecting other reports but keep default table content
reports
Avatar
Avatar
1
Agu 25
1878
Custom Dashboard using js
Odoo12.0
Avatar
Avatar
1
Apr 25
4845
Odoo .SH V17 how do I migrate a report from staging to production?
reports
Avatar
Avatar
1
Apr 25
2529
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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