Openerp 7 Reports Error
report.bpl.daily.transaction (, KeyError(u'report.bpl.daily.transaction',), ) now I'm going to report gen
Solution 1:
From error, it looks like an issue is with report naming convention. service name is wrongly specified by you anywhere. It should be like this:
in module_report.xml --> It should be simple name='bpl.daily.transaction'.
From report.py while parsing, It should be 'report.bpl.daily.transaction' as below:
report_sxw.report_sxw('report.bpl.daily.transaction', 'bpl.daily.transaction', 'RML_PATH_OF_REPORT', parser=PARSER_NAME)
During Printing from wizard, in return, it should 'bpl.daily.transaction' and it seems ok at your end.
Check this at your end and make it proper. It should work.
Post a Comment for "Openerp 7 Reports Error"