跳至內容
選單
此問題已被標幟
1 回覆
4041 瀏覽次數


I want to remove the top "Save" button from the formview of my custom module.

I know that we perform this by setting write/create to false in the XML, which I did and can't figure out why it is still there.

My view:

<record id="view_module_genall_form" model="ir.ui.view">

<field name="name">module.genall.form</field>

<field name="model">module.genall</field>

<field name="arch" type="xml">

<form string="Automatically generate bills" edit="false" create="false" delete="false" write="false">

<button name="generate_all" type="object" string="Generate bills" icon="oe_highlight"/>

</form>

</field>

</record>

The related action:

<record model="ir.actions.act_window" id="action_module_genall">

<field name="name">Automatically generate bills</field>

<field name="res_model">alkivi.genall</field>

<field name="view_type">form</field>

<field name="view_mode">form</field>

<field name="view_id" ref="view_module_genall_form" />

</record>

Do you have an idea ? Thanks!

頭像
捨棄
最佳答案

when you click save, does it allow to save or does it throw an error?

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
2
11月 19
6760
2
7月 22
2868
2
7月 19
8976
0
11月 24
875
0
3月 24
1090