3

如何将多个对象传递给报告引擎?

我正在尝试创建一个自定义发票报告,我需要在其中附加来自其他应用程序的数据以显示在发票上。我可以使用 Web 服务将数据输入 OpenERP 服务器,但如何将其传递给报告引擎?也许

set_context or (self.localcontext.update())

方法在这里很有用,因为它允许我将自定义变量传递给报告,但是如何传递整个对象。

我从其他应用程序导入的内容本质上是一个巨大的表,其中可能包含与当前合作伙伴相关的 100 条记录,我不需要将其保存在 OpenERP 数据库中,只需在生成发票时显示即可。

编辑:

测试我在解析器中的对象

class test_invoice(report_sxw.rml_parse):
def __init__(self, cr, uid, name, context):
    super(test_invoice, self).__init__(cr, uid, name, context=context)
    self.localcontext.update({
        'time': time,
        'test_var': 'Worked!',
        'get_list': self._get_list,
    })


def _get_list(self):
    result = []
    ress = {'first': '1',
        'second': '2',
        }
    result.append(ress)
    return result

并在 rml 文件中

...start of rml file
     <section>
        <para>
            [[ repeatIn(get_list(), 'g')]]
            [[ g.first ]]
        </para>
    </section>

  </story>
</document>

但这会引发错误“强制转换为 Unicode:需要字符串或缓冲区,找到元组”。我们如何在 rml 中显示自定义列表?

谢谢你。

4

3 回答 3

2

你可以传递整个对象,只要 OpenERP(好吧,你运行 OpenERP 的 python)知道那个对象。否则,您必须以某种方式“代理”该对象。使用 SQLAlchemy 从外部数据库获取数据可能是少数解决方案。你可以处理这样的事情:

[...somewhere into your parser...]
self.localcontext.update({'external_rows': session.query(MyObject).filter_by(foo='baz')})

或者如果您正在管理 CSV 数据:

self.localcontext.updarte({'external_rows': self._get_myrows_from_csv()})

例如,其中_get_myrows_from_csv返回一个字典列表。

于 2012-11-30T18:44:11.150 回答
2

除了在 RML 文件中使用结果(字典)之外,您所做的一切都是正确的。尝试

[[ g['first'] ]]

代替

[[ g.first ]]

问题是您试图将字典值作为对象属性访问。

于 2013-11-23T05:15:15.813 回答
1

在 RML 文件中:

<story>
    <section>
        <para>[[ repeatIn(products(), 'p') ]]</para>
        <blockTable colWidths="100.0,100.0" >
            <tr>
                <td>
                    <para>[[p.name]]</para>
                </td>

                <td>
                    <para>[[p.list_price]]</para>
                </td>
            </tr>
        </blockTable >
    </section>
</story>

在报告解析器中:

class myreport(report_sxw.rml_parse):
    def __init__(self, cr, uid, name, context):
        super(myreport, self).__init__(cr, uid, name, context=context)

        self.cr = cr
        self.uid = uid
        self.context = context

        self.localcontext.update({
            'products': self._get_products
            })

    def _get_products(self, ids=[85, 81, 89]):
        return [p for p in self.pool.get('product.product').browse(self.cr, self.uid, ids, self.context)]

我希望它会有用。

于 2015-10-01T12:31:01.070 回答