我是一个新的Odoo开发人员,当我的表单进入自定义状态时我需要隐藏编辑按钮,因为安全问题我需要这个。
当我尝试为表单提供属性时,XML中的这段代码不起作用。
<record model="ir.ui.view" id="pesan_form_view">
<field name="name">pesan_service_form</field>
<field name="model">pesan.service</field>
<field name="arch" type="xml">
<form string="Booking Service" attrs="{edit:'false':[('state','in','baru')]}">
<!-- structure of form -->
</record>
我不知道为什么它不起作用。
答案 0 :(得分:1)
qWeb条件不适用于FormView
。
你可以在这里查看( path_to_odoo / addons / web / static / src / js / framework / view.js ):
/**
* Return whether the user can perform the action ('create', 'edit', 'delete') in this view.
* An action is disabled by setting the corresponding attribute in the view's main element,
* like: <form string="" create="false" edit="false" delete="false">
*/
is_action_enabled: function(action) {
var attrs = this.fields_view.arch.attrs;
return (action in attrs) ? JSON.parse(attrs[action]) : true;
},
此方法从 path_to_odoo / addons / web / static / src / xml / base.xml 中的模板FormView.buttons
调用:
<button t-if="widget.is_action_enabled('edit')"
type="button"
class="oe_form_button_edit btn btn-default btn-sm" accesskey="E">
Edit
</button>
这些问题在规则的帮助下在Odoo中解决(Odoo的ir.rule
对象)
您可以在此处查找和编辑GUI中的规则:设置(顶层菜单) - &gt;安全性(左侧菜单) - &gt;访问规则(左侧菜单)。为此,请使用 admin user in debug mode 。
同样,您可以向模块的data.xml
添加一些规则以供导入。它们将在您安装或更新模块时添加。
小心! Record rules do not apply to the Administrator user
同样,您可以尝试展开小工具FormView
。
希望这会对你有所帮助。
答案 1 :(得分:0)
试试这段代码。
{{1}}