0

我正在尝试使用报告解析器,但它总是弹出一个错误

ValueError  The _name attribute report.test_module.report_test_doc is not valid

我搜索了您的报告名称用于解析器 _template 和 _name 以供 Odoo 使用。如果我删除 test_module,它不会显示错误,但是 hello() 是不可调用的。

报告.xml

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <report 
            id="eport_monthly_pdc"
            string="Monthly report of PDC"
            model="account.voucher"
            report_type="qweb-pdf"
            name="test_module.report_test_doc" 
            file="test_module.report_test_doc" 
        />
    </data>
</openerp>

报告解析器.py

from openerp import api, models
from openerp.report import report_sxw
import time
class report_parser(report_sxw.rml_parse):
    def __init__(self, cr, uid, name, context):
        super(report_parser, self).__init__(cr, uid, name, context=context)
        self.localcontext.update({     
            'time': time,            
            'hello_world': self._hello,
        })
    def _hello(self):
        return "Hello World!"

class report_parser_test(models.AbstractModel):
    _name = 'report.test_module.report_test_doc'
    _inherit = 'report.abstract_report'
    _template = 'test_module.report_test_doc'
    _wrapped_report_class = report_parser

report_test_doc.xml

<openerp>
<data> 
<template id="report_test_doc">
    <t t-call="report.html_container">
        <t t-foreach="docs" t-as="o">
            <t t-call="test_module.report_test_layout">
                <div class="page">
                    <div class="text-center">
                        <span t-esc="hello_world()"/>
                    </div>
                </div>
            </t>
        </t>
    </t>
</template>
</data>
</openerp>
4

2 回答 2

2

在你的情况下,基本上,

Qweb 报表主要用于调用models.AbstractModel每个报表类型的每个类条目的使用模型,并在您的类中继承它以用于解析器类条目。

class report_parser_test(models.AbstractModel):
    _name = 'report.test_module.report_test_doc'
    _inherit = 'report.abstract_report'
    _template = 'test_module.report_test_doc'
    _wrapped_report_class = report_parser

每个 Qweb Report 解析器类 Entry 的属性:

_name 属性始终以report.<your report template id>

_inherit = 'report.abstract_report' 它是report.abstract_report的默认继承,位于report模块(Every Report的基类)

_template = 'test_module.report_test_doc'

这基本上是<your module name>.<your report template id>

_wrapped_report_class = 报告解析器

这是您的解析器类条目的一部分,其中包含您的报告逻辑和报告的计算逻辑。

**还有另一件事要打电话给你的 hello() 电话:

在您的情况下,您的函数已声明并添加了您的报告解析器类,但我们必须在 Qweb 模板文件上调用该函数

喜欢..

<span t-esc="hello()"/>

然后你会从你的最后调用那个函数。

希望我的回答对你有帮助:)

于 2016-03-04T08:29:46.723 回答
0

大写的模块名称(即目录)在 Odoo11 中引发此错误。例子:

_name = 'report.Name_Module.report_name'

于 2018-12-12T07:04:50.740 回答