我在模块上创建报告account.invoice
,我尝试显示一些数据表单sale.order
但在account.invoice
表中没有order_id
(id 相关)如果我想sale.order
在account.invoice
报告上显示一些数据表单但没有相关的 id我该怎么办sale.order
?
所以,如果account.invoice
有order_id
(id 相关)我可以使用
[[o.order_id._____]]
有人可以给我一些建议吗?
这是我的代码
class order(report_sxw.rml_parse):
def __init__(self, cr, uid, name, context=None):
super(order,self).__init__(cr, uid, name, context=context)
so_origin = self.pool.get('account.invoice').browse(cr, uid, uid)
so_obj = self.pool.get('sale.order').browse(cr, uid, so_origin.id)
self.localcontext.update({
'order_id': so_obj.id
})
并在 rml 文件中
[[repeatIn(objects,'o')]]
[[o.order_id._______]]