From aceab86bd0756f6960d8d36105bde95930b8dd7a Mon Sep 17 00:00:00 2001 From: git_admin Date: Fri, 1 May 2026 14:26:28 +0000 Subject: [PATCH] Tower: upload base_accounting_kit 19.0.2.3.1 (via marketplace) --- .../wizard/account_report_general_ledger.py | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 addons/base_accounting_kit/wizard/account_report_general_ledger.py diff --git a/addons/base_accounting_kit/wizard/account_report_general_ledger.py b/addons/base_accounting_kit/wizard/account_report_general_ledger.py new file mode 100644 index 0000000..b0cc579 --- /dev/null +++ b/addons/base_accounting_kit/wizard/account_report_general_ledger.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models, _ +from odoo.exceptions import UserError + + +class AccountReportGeneralLedger(models.TransientModel): + _name = "account.report.general.ledger" + _inherit = "account.common.account.report" + _description = "General Ledger Report" + + section_main_report_ids = fields.Many2many(string="Section Of", + comodel_name='account.report', + relation="account_report_general_section_rel", + column1="sub_report_id", + column2="main_report_id") + section_report_ids = fields.Many2many(string="Sections", + comodel_name='account.report', + relation="account_report_general_section_rel", + column1="main_report_id", + column2="sub_report_id") + name = fields.Char(string="General Ledger", default="General Ledger", required=True, translate=True) + initial_balance = fields.Boolean(string='Include Initial Balances', + help='If you selected date, this field ' + 'allow you to add a row to display ' + 'the amount of debit/credit/balance ' + 'that precedes the filter you\'ve ' + 'set.') + sortby = fields.Selection( + [('sort_date', 'Date'), ('sort_journal_partner', 'Journal & Partner')], + string='Sort by', required=True, default='sort_date') + journal_ids = fields.Many2many('account.journal', + 'account_report_general_ledger_journal_rel', + 'account_id', 'journal_id', + string='Journals', required=True) + + def _print_report(self, data): + data = self.pre_print_report(data) + data['form'].update(self.read(['initial_balance', 'sortby'])[0]) + if data['form'].get('initial_balance') and not data['form'].get( + 'date_from'): + raise UserError(_("You must define a Start Date")) + records = self.env[data['model']].browse(data.get('ids', [])) + return self.env.ref( + 'base_accounting_kit.action_report_general_ledger').with_context( + landscape=True).report_action(records, data=data)