Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Generate PDF Report From Wizard

Odoberať

Get notified when there's activity on this post

This question has been flagged
accountingwizardreportingreport
2 Replies
7929 Zobrazenia
Avatar
Kevin

Hello, can someone help me, I want to generate a pdf from a wizard, I already have the template and the xml action, but when I call the wizard method to generate the pdf, it generates it blank without any information, currently what the wizard does is generate a ledger modified to another tree view of another model, so I want the option to also generate it in pdf with the same information of the method that it generates when generating the other view:

This is the method that generates another view of another model with the info:

def confirm_export(self):
move_lines = self.env['account.move.line'].search([
('account_id', 'in', self.account_ids.ids),
('date', '>=', self.start_date),
('date', '<=', self.end_date),
('move_id.state', '=', 'posted'), # Filtrar movimientos publicados
])

ledger_view_records = defaultdict(lambda: {'debit_total': 0.0, 'credit_total': 0.0, 'balance_total': 0.0,
'balance_acumulado': 0.0})
for move_line in move_lines.sorted(key=lambda r: r.date):
key = (move_line.date, move_line.journal_id, move_line.account_id)
ledger_view_records[key]['account_id'] = move_line.account_id.id
ledger_view_records[key]['journal_id'] = move_line.journal_id.id
ledger_view_records[key]['date'] = move_line.date
ledger_view_records[key]['currency_id'] = move_line.currency_id.id
ledger_view_records[key]['debit_total'] += move_line.debit
ledger_view_records[key]['credit_total'] += move_line.credit
ledger_view_records[key]['balance_acumulado'] += move_line.cumulated_balance
ledger_view_records[key]['balance_total'] += move_line.balance

export_general_ledger_view = self.env['export.general.ledger.view']
created_records = export_general_ledger_view.create(list(ledger_view_records.values()))

# Abrir la vista después de guardar los datos
action = self.env.ref('general_ledger_sv.action_export_general_ledger_view').read()[0]
action['domain'] = [('id', 'in', created_records.ids)]
return action

This is the xml action and template id:

<record id="report_general_ledger" model="ir.actions.report">
<field name="name">Libro Mayor PDFfield>
<
field name="model">export.general.ledger.viewfield>
<
field name="report_type">qweb-pdffield>
<
field name="report_name">general_ledger_sv.report_general_ledger_sv_template_idfield>
<
field name="report_file">general_ledger_sv.report_general_ledger_sv_template_idfield>
<
field name="binding_model_id" ref="general_ledger_sv.model_export_general_ledger_view"/>
<
field name="binding_type">reportfield>
<
field name="binding_view_types">treefield>
record>

This is the current method to export to pdf:


def generate_pdf(self):
# Obtener los valores del modelo export.general.ledger.view
ledger_view = self.env['export.general.ledger.view'].browse(self._context.get('active_ids', []))

data = {
'model_id': ledger_view.id,
'date': ledger_view.date,
'account_id': ledger_view.account_id,
'journal_id': ledger_view.journal_id,
'debit_total': ledger_view.debit_total,
'credit_total': ledger_view.credit_total,
'balance_total': ledger_view.balance_total,
'balance_acumulado': ledger_view.balance_acumulado,
'currency_id': ledger_view.currency_id,
}

docids = ledger_view.ids
return self.env.ref('general_ledger_sv.report_general_ledger').report_action(docids=docids, data=data)
0
Avatar
Zrušiť
Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,

When you are printing the data from wizard the data may not have been passed to the report and thus it fails to render the values in the template.

You can check the values, you are returning inside the variable docids and data from wizard and ensure the needed values are passed.

Also you can check out this video explaining the same:  https://www.youtube.com/watch?v=3UJ8UfP48B4


Thanks

0
Avatar
Zrušiť
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,
In certain conditions, we need to print the report from a button or wizard. In that condition, we use the print button inside the wizard or form to call the report action.

Please refer to the blog topic How to Create a PDF Report in Odoo :https://www.cybrosys.com/blog/how-to-create-a-pdf-report-in-odoo-15

Hope it helps

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
How to generate a report from a wizard?
wizard reporting report
Avatar
Avatar
1
apr 24
33104
Odoo Online 18.4: Mapping Spanish Chart of Accounts to US for Trial Balance Report Solved
accounting reporting
Avatar
Avatar
1
okt 25
450
What types of subformulas are there in a financial report? Solved
accounting report
Avatar
Avatar
1
sep 25
1450
What content in Python files for report invoice document
accounting reporting
Avatar
1
apr 25
2102
How to perform automatic year-end accounting entries?
accounting reporting
Avatar
0
mar 25
1854
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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