Odoo 9.0c:如何在销售订单报告qweb中获取当前用户的名称?

时间:2017-03-22 08:45:52

标签: report odoo-9 qweb

请问你能帮我指出正确的方法,以便在重复的qweb报告中显示当前用户(直接打印报告的人,而不是创建报告的用户)?而且,我的目的是在QR码表格下设置名称。这是我的代码:

                                                <div class="col-xs-3">
                                                    <img t-att-src="'/report/barcode/?type=%s&amp;value=%s&amp;width=%s&amp;height=%s' % ('QR', o.name, 80, 80)" style="width:80px;height:80px;"/>
                                                    <img t-att-src="'/report/barcode/?type=%s&amp;value=%s&amp;width=%s&amp;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)"

1 个答案:

答案 0 :(得分:1)

您可以使用用户

访问当前用户表单qweb报告
<span t-esc="user.name"></span>

当前合作伙伴

<span t-esc="user.partner_id.name"></span>

查看odoo 9报告documentation