Skip to Content
This question has been flagged
1 Reply
8947 Views

I am trying to inherit from the module account.balance.reporting to add some extras. My custom module has this structure:

account_balance_reporting_xls
|__ wizard
|   |__ __init__.py
|   |__ wizard_print.py
|
|__ __init__.py
|__ __openerp__.py
|__ account_balance_reporting.py

Can someone explain me why I get this error?

File ".../account_balance_reporting_xls/wizard/wizard_print.py", line 30, in xls_export 'model': account.balance.reporting, NameError: global name 'account' is not defined

This is the code of my custom file wizard_print.py, the error is in the first line of the definition of the dictionary data:

from osv import fields, osv
import pooler
from openerp.osv import orm

class print_wizard(osv.osv_memory):
    _inherit = 'account.balance.reporting.print.wizard'

    def xls_export(self, cr, uid, ids, context=None):
        wiz_form = self.browse(cr, uid, ids)[0]
        data = {
            'model': account.balance.reporting,
            'report_id': wiz_form.report_id,
            'report_xml_id': wiz_form.report_xml_id,
        }
        return {
            'type': 'ir.actions.report.xml',
            'report_name': 'reporting.xls',
            'datas': data
        }                

print_wizard()

Avatar
Discard

The issue is with 'model': account.balance.reporting, where you need to write the model in string format (Quoted).

Best Answer

Define return type model 'account.balance.reporting' in quotes

  wiz_form = self.browse(cr, uid, ids)[0]
        data = {
            'model': 'account.balance.reporting',
            'report_id': wiz_form.report_id,
            'report_xml_id': wiz_form.report_xml_id,
        }

Avatar
Discard
Related Posts Replies Views Activity
4
Oct 20
6385
3
Feb 24
8226
1
Nov 23
653
1
Jun 23
1494
0
Feb 23
1307