From 2bbfa04c25ce8f69949daa0aea44d6202a125cfc Mon Sep 17 00:00:00 2001 From: Ernad Husremovic Date: Thu, 12 Mar 2026 11:24:20 +0100 Subject: [PATCH] Set defaults: result_selection=customer_supplier, reconciled=True MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 assisted by claude --- .../accounting_pdf_reports/wizard/account_partner_ledger.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/odoo-bringout-odoomates-accounting_pdf_reports/accounting_pdf_reports/wizard/account_partner_ledger.py b/odoo-bringout-odoomates-accounting_pdf_reports/accounting_pdf_reports/wizard/account_partner_ledger.py index df14b7c..5af6fa4 100644 --- a/odoo-bringout-odoomates-accounting_pdf_reports/accounting_pdf_reports/wizard/account_partner_ledger.py +++ b/odoo-bringout-odoomates-accounting_pdf_reports/accounting_pdf_reports/wizard/account_partner_ledger.py @@ -8,11 +8,12 @@ class AccountPartnerLedger(models.TransientModel): _inherit = "account.common.partner.report" _description = "Account Partner Ledger" + result_selection = fields.Selection(selection_add=[], default='customer_supplier') amount_currency = fields.Boolean("With Currency", help="It adds the currency column on " "report if the currency differs from " "the company currency.") - reconciled = fields.Boolean('Reconciled Entries') + reconciled = fields.Boolean('Reconciled Entries', default=True) previous_balance = fields.Boolean('Previous Balance', default=True, help="Show previous balance before the start date.")