Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
9820 Переглядів

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()

Аватар
Відмінити

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

Найкраща відповідь

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,
        }

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
4
жовт. 20
9086
3
лют. 24
10538
1
лист. 23
2952
1
черв. 23
3683
0
лют. 23
2769