Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
5459 Prikazi

Well I'm working on jasper report and I want to create a new balance sheet report, so I reviewed that the following file: "addons\account\report\account_financial_report.py" returns a list with a dictionary with all information needed for balance sheet, I did some changes in that file to parse it to new report, but I want to create a new module and inherit that method (get_lines) to do my changes in my own files and don't use the openerp files. Is there some way to access to that method and get that list ?

I tried with the following:

class new_report_balance_sheet(osv.Model):

    _name = 'accounting.report'
    _inherit = 'accounting.report'
        

    def start_report(self, cr, uid, ids, data, context=None):
        my_val=self.pool.get('account.financial.report.report.account.common')

Avatar
Opusti
Best Answer


In your custom module, define a Python class for your custom report. This class should inherit from account.financial.report.report.account.common to access the get_lines method. You will also need to define your custom methods to make the required changes.

class CustomBalanceSheetReport(models.Model):

    _name = 'custom.balance.sheet.report'

    _inherit = 'account.financial.report.report.account.common'


    def get_lines(self, data):

        # Your custom code here

        lines = super(CustomBalanceSheetReport, self).get_lines(data)

        # Make your changes to the 'lines' list

        return lines


Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
4
mar. 24
3524
1
jun. 22
6717
4
jun. 21
16001
2
avg. 17
12747
0
apr. 16
3354