Hi,
return self.env['report'].get_action(self, 'my_module_my_template', data=datas)
I passed python dictionary in data. But it is None when I print in Xml.
<t t-esc="data"/>
Can anyone explain how can I solve this ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
return self.env['report'].get_action(self, 'my_module_my_template', data=datas)
I passed python dictionary in data. But it is None when I print in Xml.
<t t-esc="data"/>
Can anyone explain how can I solve this ?
First check in python,
print datas
check any entries in datas,
if yes,
data['form']['department']
Use like this, its may works,
<t t-if="data['form']['department']">
<h3><t t-esc="data['form']['department']"/></h3>
</t>
I have tried this. data is considered as None Type
do make print in the python?
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
4
Nov 24
|
5234 | ||
|
1
Mar 24
|
394 | ||
|
3
Sep 23
|
22643 | ||
|
0
Feb 24
|
1716 | ||
|
1
Oct 22
|
2780 |