Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 OpenERP 的右侧栏中为产品添加一个新报告链接的链接,但我不知道视图在哪里。我修改了 addons/product/report/ init .py 以添加我的新报告,但没有成功。
要将报告添加到右侧栏,您必须menu="True"在报告标签中添加属性。
menu="True"
例如:
<report menu="True" id="my_report_id" string="My Report" model="model_name" name="service.name" rml="your_rml_path.rml" auto="False" header="False"/>