odoo - 带弹出窗体的日历视图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了odoo - 带弹出窗体的日历视图相关的知识,希望对你有一定的参考价值。
我试图用弹出窗口创建日历
<record id="view_sale_order_lines_calendar" model="ir.ui.view">
<field name="name">sale.order.line.inherit</field>
<field name="model">sale.order.line</field>
<field name="arch" type="xml">
<calendar string="Transfers" **event_open_popup="True"** color="state" date_start="date_start" date_stop="date_stop">
<field name="order_id"/>
<field name="departure_bcs"/>
<field name="destination_bcs"/>
<field name="state"/>
</calendar>
</field>
</record>
我找不到任何文档,例如采用会议日历的代码
当我点击日历行时,我会弹出下一个错误的弹出窗口:
AccessError No value found for sale.order.line('58',).name
ODOO 8.0.1
答案
你必须使用event_open_popup="%(my_module.my_form_view)s"
以上是关于odoo - 带弹出窗体的日历视图的主要内容,如果未能解决你的问题,请参考以下文章