我想在Openerp 6.1.1中打印销售点收据时打印公司徽标。 我在pos.xml文件中添加了以下代码:
<img width="60" height="30" border="0" src="http://localhost:8069/web/static/src/img/logo.png"></img>
但如果我更改公司的标识,它将不会影响收据标识。如何在POS收据中添加公司的动态徽标?
答案 0 :(得分:1)
以下是在报告上打印徽标的RML标记。
<image x="1.3cm" y="27.6cm" height="40.0" >[[ company.logo or removeParentNode('image') ]]</image>
这里公司是repeatin的变量,因此您可以找到相应的字段并将其映射到[[]]
之间希望这有助于,谢谢
答案 1 :(得分:1)
将此标记写入rml文件的标题
<pagetemplate id="first">
<frame id="first" x1="39.0" y1="20.0" width="770" height="450"/>
<pagegraphics>
<image x="5.5cm" y="17.0cm" height="90.0">[[company.logo]] </image>.
</pagegraphics>
</pagetemplate>