Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
6982 Lượt xem

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?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 4 25
4189
3
thg 12 22
12274
5
thg 4 24
42929
6
thg 4 24
39976
3
thg 3 24
11224