Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
4481 Widoki

Hello, I need to choose each time between two trees as the view mode on one2many field in xml file :

I defined too tree in my xml file as follows : 

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

<field name="name">name</field>
<field name="model">model.model</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree editable="bottom" domain="[('widget.view.is_action_enabled('edit')', '=', False)]">
<field name="employee_id"/>
<field name="company_id"/>
</tree>
<tree domain="[('widget.view.is_action_enabled('edit')', '!=', False)]">
<field name="employee_id"/>
<field name="company_id"/>
</tree>
</field>
</record>

when I mentioned <tree editable="bottom"> I will add attachment through tree view itself only. it is looking fine for me. But when I have saved current record and click on row of tree view that is one of the attachment it will not redirect to file details or ir attachment form view. but if i did not mentioned editable="bottom" then it will redirect to form view for same case.

Thank you in Advance :)

Awatar
Odrzuć
Najlepsza odpowiedź

I didn't try it, but I think you can do that by creating two pages and put a tree in a page, you can then switch between pages based on a condition. A page could be made invisible based on a condition when the view is displayed, but, I think, you could not hide a page interactively.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
2
lis 18
13198
1
wrz 15
5022
1
mar 15
4867
2
gru 23
20954
0
mar 22
2023