Skip to Content
Menu
This question has been flagged
1 Reply
6128 Views

Hello,

I'm trying to create a  report and everything seemed fine with my code except I got this error while printing the report

Here's a part from error message:

File "/opt/odoo8/odoo/addons/report/models/report.py", line 135, in translate_doc

return self.translate_doc(cr, uid, doc_id, model, lang_field, template, values, context=context)

File "/opt/odoo8/odoo/openerp/api.py", line 268, in wrapper

return old_api(self, *args, **kwargs)

File "/opt/odoo8/odoo/addons/report/models/report.py", line 106, in translate_doc

doc = self.pool[model].browse(cr, uid, doc_id, context=ctx)

File "/opt/odoo8/odoo/openerp/api.py", line 268, in wrapper

return old_api(self, *args, **kwargs)

File "/opt/odoo8/odoo/openerp/models.py", line 5266, in browse

return self._browse(Environment(cr, uid, context or {}), ids)

QWebException: """"""""""""""""""""""""""""""maximum recursion depth exceeded" while evaluating
"translate_doc(doc_id, doc_model, 'user_id.partner_id.lang', 'school_erp.report_printstandard')"" while evaluating


and here's my code :

in report.xml:

<template id="report_printstandard">	
<t t-call="report.html_container">
<t t-foreach="doc_ids" t-as="doc_id">
<t t-raw="translate_doc(doc_id, doc_model, 'user_id.partner_id.lang', 'school_erp.report_printstandard')"/>
</t>
</t>
</template>


and here's my module:

class school_standard(osv.osv):
_name = 'school.standard'
_rec_name = "code"
_columns = {
'name':fields.char('Standard Name', size=256, required=True),
'code':fields.char('Standard Code', size=8, required=True),
'user_id':fields.many2one('res.users', 'User'),
'student_line':fields.one2many('school.student', 'standard_id', 'Students'),
}  
def get_uid(self, cr, uid, context=None):
return uid
_defaults = {
'user_id': get_uid,
}
school_standard()


What is wrong in my code?

Avatar
Discard
Best Answer

Hi,
You should use different template id because it is already used.You are using the same id <template id="report_printstandard"> from 'school_erp.report_printstandard'. You need change the template id.

<template id="report_printstandard">
<t t-call="report.html_container">
<t t-foreach="doc_ids" t-as="doc_id">
<t t-raw="translate_doc(doc_id, doc_model, 'user_id.partner_id.lang', 'school_erp.report_printstandard_record')"/>
</t>
</t>
</template>
<template id="report_printstandard_record'"> 
<t t-call="report.external_layout">
<div class="page">
--------CODE----------
</div>
</t>
</template>

Regards

Avatar
Discard
Related Posts Replies Views Activity
3
Dec 22
9944
5
Apr 24
39330
6
Apr 24
36742
3
Mar 24
9211
2
Jul 19
765