我想在日历上的摘要窗口中打开直接表单视图。那么,如何在点击日历视图时打开直接表单视图?
我使用 web_calendar 模块(widgets.js文件)作为参考。
我尝试使用以下代码:
var self = this;
this._super(parent, {
title: this.get_title(),
size: 'small',
buttons: this._buttons ? [
{text: _t("Create"), classes: 'btn-primary', click: function () {
if (!self.quick_add()) {
self.focus();
}
}},
{text: _t("Edit"), click: function () {
self.slow_add();
}},
{text: _t("Cancel"), close: true},
] : [],
$content: QWeb.render('CalendarView.quick_create', {widged: this})
});
答案 0 :(得分:1)
我在Odoo 11上,可以直接从日历转到没有摘要窗口的表单视图,我唯一要做的就是在xml日历标签中设置属性quick_add =“ False”。我可以想象这也适用于早期的Odoo版本,但不知道。
<field name="arch" type="xml">
<calendar ... quick_add="False">
<field name="name"/>
</calendar>
</field>