2

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

4

1 回答 1

1

在管理菜单下,转到低级对象:操作:报告 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"/>
于 2011-02-25T23:03:08.967 回答