我在 Odoo 12 中有一个看板视图和一个模板,我需要访问那里的python方法数据以将它们打印在表中。我的python方法返回一个键-值对字典。
我使用了 t-foreach ,如下所示:
<t t-foreach="get_departments()" t-as="item">
<tr>
<td class="text-right">
<t t-esc="item"/>
</td>
<td class="text-right">
<t t-esc="item_value"/>
</td>
</tr>
</t>
这是我模型中的方法:
def get_departments(self):
dep_patients = {}
departments = self.env['hr.department'].search([('patient_depatment', '=', True)])
appointment = self.env['hms.appointment'].search([])
for dept in departments:
couter = 0
for app in appointment:
if dept.id == app.department_id.id:
couter +=1
dep_patients.update({dept.name: couter})
return dep_patients
在我的模板中,在页面加载时的方法调用中,我收到此错误:
Uncaught Error: QWeb2 - template['kanban-box']: Runtime Error: TypeError: dict.get_departments is not a function
http://localhost:8000/web/content/862-f2fdf49/web.assets_common.js:3374
Traceback:
Error: QWeb2 - template['kanban-box']: Runtime Error: TypeError: dict.get_departments is not a function
at Object.exception (http://localhost:8000/web/content/862-f2fdf49/web.assets_common.js:3374:7)
at Engine.eval (eval at _render (http://localhost:8000/web/content/862-f2fdf49/web.assets_common.js:3416:73), <anonymous>:114:29)
at Engine._render (http://localhost:8000/web/content/862-f2fdf49/web.assets_common.js:3415:296)
at Engine.render (http://localhost:8000/web/content/862-f2fdf49/web.assets_common.js:3415:151)
at Engine._render (http://localhost:8000/web/content/862-f2fdf49/web.assets_common.js:3419:57)
at Engine.render (http://localhost:8000/web/content/862-f2fdf49/web.assets_common.js:3415:151)
at Class._render (http://localhost:8000/web/content/901-66db042/web.assets_backend.js:1804:451)
at Class.start (http://localhost:8000/web/content/901-66db042/web.assets_backend.js:1794:1256)
at Class.prototype.<computed> [as start] (http://localhost:8000/web/content/862-f2fdf49/web.assets_common.js:3538:488)
at http://localhost:8000/web/content/862-f2fdf49/web.assets_common.js:3683:52
如错误所示,似乎我的python方法无法在模板中访问,在这种情况下,我可能需要定义一个JavaScript方法来访问python方法数据。有没有办法在看板视图模板中直接访问我的python方法?如果是,该怎么办?
答案 0 :(得分:1)
我知道您可以在QWeb报告中调用一个函数。
<t t-set="result" t-value="o.call_some_method()"/>
但是我认为您无法在看板视图中执行此操作,因为您无法访问
RecordSet
由位于客户端并调用函数的任何变量组成
这并不简单,因为我记得这是一个rcp调用。
但是您可以像在Odoo帐户模块(odoo 10.0)中那样使用computed field
解决这个问题。
department_list = fields.Text('Departments', compute='get_departments')
@api.one
def get_departments(self):
""" use SQL to enhance performance."""
dep_patients = []
computing_sql = """
SELECT
hp.departement_id,
hd.name,
count(*) as appointment_count
FROM
hr_department hd INNER JOIN hms_appointment hp on hd.id hp.departement_id
WHERE
hd.patient_depatment is True
GROUP BY departement_id, hd.name
"""
self.env.cr.execute(computing_sql)
for dp_id, dp_name, counts in self.env.cr.fetchall():
# add an dict to use it as a json object later in javascript
dep_patients.append({'name':dp_name, 'count': counts})
self.department_list = json.dumps(dep_patients) if dep_patients else False
在您看来,只是这样做
<t t-value="JSON.parse(record.department_list.raw_value)" t-set="department_list"/>
<t t-foreach="department_list" t-as="item">
<!-- here item is an json object with two attributes name, count -->
<tr>
<td class="text-right">
<t t-esc="item.name"/>
</td>
<td class="text-right">
<t t-esc="tem.count"/>
</td>
</tr>
</t>
对不起,语法错误希望您能理解,可以在odoo帐户模型中进行检查
答案 1 :(得分:0)
您应该使用报表解析器访问模板中的Python函数