Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
5333 Tampilan

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
Buang
Jawaban Terbai


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
Buang
Post Terkait Replies Tampilan Aktivitas
4
Mar 24
3369
1
Jun 22
6570
4
Jun 21
15850
2
Agu 17
12630
0
Apr 16
3237