Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
8260 Lượt xem

I want to create a nested tree view with a grouping by fileds like the nested tree view in leave module(leave summary action), but I did not find it source code in odoo.

Can someone Help me ??



Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

If you want to create Nested view like Leaves Summary, by setting default group_by in Menu Action.

If you can refer to source code of Menu Action of Leaves Summary:

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

<field name="name">Leaves Summary</field>

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

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

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

<field name="view_id" eval="view_holiday_simple"/>

<field name="context">{'search_default_group_type': 1}</field>

<field name="domain">[('holiday_type','=','employee'), ('state', '!=', 'refuse')]</field>

<field name="search_view_id" ref="view_hr_holidays_filter"/>

</record>

In this,  in context we have passed default group_by in context:

<field name="context">{'search_default_group_type': 1}</field>

to give default group_by condition in context we have to first define that group_by condition in search view of model.

you can observe that, In search_view_id reference of search_view is given, in that view definition, we have set group_by condition:

<filter name="group_type" string="Type" context="{'group_by':'holiday_status_id'}"/>

Likewise, you can do it for your module.

Hope, this helps..

Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

Can I make this tree editable ??

Ảnh đại diện
Huỷ bỏ

Yes, you can make this tree view editable.

But the thing is, it will work only after removing filters which got applied through context.

Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 3 15
4811
1
thg 2 18
12385
1
thg 5 16
5584
0
thg 6 15
3667
0
thg 5 17
8408