如何从openerp中的rml文件获取odt格式的报告

发布于 2024-10-19 09:01:29 字数 52 浏览 0 评论 0原文

我有一个 RML 文件,可以生成 PDF 格式的报告,但如何生成 ODT 格式的相同报告?

I have an RML file that generates a report in PDF format, but how can I generate the same report in ODT format?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

已下线请稍等 2024-10-26 09:01:29

在“管理”菜单下,转到“低级对象:操作:报告 Xml”。打开该报告的条目,并将类型从 pdf 更改为 odt。

只是为了使此编程相关,这样它就不会被转移到 superuser.com,下面介绍了如何使用此更改来配置报告的 XML 文件。将 type 属性添加到您的报告声明中:

<report 
    id="report_location_overview_all"
    type="odt"
    model="stock.location" 
    name="lot.stock.overview_all" 
    string="Location Content (With children)" 
    rml="stock/report/lot_overview_all.rml"/>

Under the Administration menu, go to Low Level Objects: Actions: Report Xml. Open the entry for that report, and change the type from pdf to odt.

Just to make this programming related so it doesn't get shuffled off to superuser.com, here's how to configure the report's XML file with this change. Add the type attribute to your report declaration:

<report 
    id="report_location_overview_all"
    type="odt"
    model="stock.location" 
    name="lot.stock.overview_all" 
    string="Location Content (With children)" 
    rml="stock/report/lot_overview_all.rml"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文