different view form for edit and create in odoo

瘦欲@ 提交于 2019-12-05 08:08:20

问题


I'd like to know is it possible to have different form views for edit mode and create mode in odoo ?

Actually I just want to hide some elements in create mode and show it in edit mode.

I've tried to using attrs like :

<button name="%(print_invoice)d" string="Cetak Struk" type="action" attrs="{'invisible':[('id', '!=', False)]}" />    

But when i open the form it gives me error like this :

Uncaught Error: Unknown field id in domain [["id","!=",false]]    

Any help would be appreciated.

Thank you


回答1:


@qatz

You cannot have different views based on "Edit" or "Create" of record.

You can try this by adding "state" field and based on the value of state you can hide show the elements.

Hope this helps !!




回答2:


I have used attrs="{'invisible': [('id', '=', False)]}" to hide a field on creation. You must have id as a (hidden) field in your view, like <field name="id" invisible="1" />




回答3:


you can easily work around this by using "create_date" as a trafic light.

1st expose the field

# make creation date visible
create_date = fields.Date(
    'Data',
    invisible=False,
    readonly=True,
)

then add it to the form and use it into attrs property

<field name="create_date" invisible="1" />
<ELEM attrs="{'invisible': [('create_date', '!=', False)]}">
[...]
</ELEM>



回答4:


You can have different views for read, edit and create like this if desired

<div class="oe_read_only">
   READ ONLY
</div>
<div class="oe_edit_only" attrs="{'invisible':[('id', '=', False)]}">
   EDIT ONLY
</div>
<div attrs="{'invisible':[('id', '!=', False)]}">
   CREATE ONLY
</div>


来源:https://stackoverflow.com/questions/27497549/different-view-form-for-edit-and-create-in-odoo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!