请问你能帮我指出正确的方法,以便在重复的qweb报告中显示当前用户(直接打印报告的人,而不是创建报告的用户)?而且,我的目的是在QR码表格下设置名称。这是我的代码:
<div class="col-xs-3">
<img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('QR', o.name, 80, 80)" style="width:80px;height:80px;"/>
<img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('QR', o.user.name, 80, 80)" style="width:80px;height:80px;"/>
</div>
然后我得到这个erorr:
QWebException: "'sale.order' object has no attribute 'user'" while evaluating
"'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('QR', o.user.name, 80, 80)"
答案 0 :(得分:1)
您可以使用用户即
访问当前用户表单qweb报告<span t-esc="user.name"></span>
当前合作伙伴
<span t-esc="user.partner_id.name"></span>
查看odoo 9报告documentation