我正在尝试编辑从数据库中的表中收集数据的XML报告:
<tr t-foreach="o.order_line" t-as="l">
<td>
<span t-field="l.name"/>
</td>
<td>
...
</td>
...
</tr>
现在,这完全有效,我可以在我的文档中打印order_line表的每个字段。 当我尝试打印另一个表(product_template)
的字段时,我的问题开始了我想打印查询结果:
SELECT product_template.product_code [this is NOT the product_id nor a primary key]
FROM product_template, order_line
WHERE
order_line.product_id = product_template.product_id;
此查询返回一个unic值,该值是一个8字符的字符串,并显示在文档的<td> ... </td>
字段中。
由于我是xml编码和DB的初学者,所以我们非常感谢任何帮助。 谢谢