İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
8169 Görünümler

I've set up a tree view and a search view for a simple model:

<record id="public_holidays_list_view" model="ir.ui.view">
             <field name="name">holidays.holidays.tree.view</field>
             <field name="model">holidays.holidays</field>
             <field name="arch" type="xml">
                    <tree string="Public Holidays" editable="bottom">
                          <field name="name"/>
                          <field name="date"/>
                          <field name="percentage"/>
                          <field name="year" invisible="1"/>
                    </tree>
             </field>
     </record>

     <record id="public_holidays_search_view" model="ir.ui.view">
             <field name="name">holidays.holidays.search.view</field>
             <field name="model">holidays.holidays</field>
             <field name="arch" type="xml">
                    <search string="Public Holidays">
                            <group expand="0" string="Group By...">
                                   <filter name="group_by_year" string="Year" icon="terp-project" context="{'group_by':'year'}"/>
                            </group>
                    </search>
             </field>
     </record>

     <record id="open_view_public_holidays" model="ir.actions.act_window">
        <field name="name">Public Holidays</field>
        <field name="type">ir.actions.act_window</field>
        <field name="res_model">holidays.holidays</field>
        <field name="context">{'search_default_group_by_year': 1}</field>
        <field name="view_type">form</field>
        <field name="view_mode">tree</field>
        <field name="view_id" eval="public_holidays_list_view"/>
        <field name="search_view_id" ref="public_holidays_search_view"/>
    </record>

The records are grouped, but not displayed, even if I expand the groups.
What is happening?
Further: I'd like the standard create button to still work while in search view.

Please help.

Avatar
Vazgeç
En İyi Yanıt

Hi,

You must make sure year column has sufficiet value for it. You should follow existing core modules for the example.

We've added groupby expand feature on Odoo Apps.

https://www.odoo.com/apps/modules/8.0/web_groupby_expand/

Hope this helps.

Thanks.

Avatar
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
2
Mar 15
7864
0
Mar 15
3139
2
Ara 23
1604
1
Ağu 19
9105
0
Mar 15
4882