コンテンツへスキップ
メニュー
この質問にフラグが付けられました
8 返信
109024 ビュー

hi all ,

i have a tree view , i want to show it by default with grouped by (grouped by employee_id)

if someone can help .

thanks

アバター
破棄
最善の回答
<filter name="group_employee_id" string="Category" icon="terp-partner" context="{'group_by':'employee_id'}"/>

So, on your action you have to send this by context:

<field name="context">{'search_default_group_employee_id': 1}</field>
アバター
破棄
最善の回答

On your search view you have something like this:

<filter name="group_employee_id" string="Category" icon="terp-partner" context="{'group_by':'employee_id'}"/>

So, on your action you have to send this by context:

<field name="context">{'search_default_group_employee_id': 1}</field>
アバター
破棄

I tried with just {'group_by': 'employee_id'} in the action context and it works.

最善の回答

What if this treeview is inside a form? Not called from an action.

アバター
破棄

Good question. I would also like to know.

did you found the answer ?

Did anyone get solution of this question??

最善の回答
<tree string="" default_order="field_name">
<field name=""/>
<field name=""/>
</tree>
アバター
破棄
最善の回答

Should be super simple in all the recent versions of ODOO.

https://youtube.com/shorts/-X-7NHL4dJY

アバター
破棄
最善の回答

I do this in v7 it require an extension of the widget one2many or many2many

アバター
破棄
最善の回答

Nice solution

アバター
破棄
最善の回答

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

<field name="name">.............</field>

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

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

<field name="context">{'group_by':'employee_id'}</field>

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

<field name="domain">[('active', '=', True)]</field>

</record>

アバター
破棄
関連投稿 返信 ビュー 活動
0
5月 24
1617
1
7月 21
2633
0
4月 16
4142
1
5月 15
3858
2
3月 15
4695