İçereği Atla
Menü
Bu soru işaretlendi
2 Cevaplar
7678 Görünümler
<group>
                            <field name="id" invisible="1"/>
                            <field name="q_versions" widget="selection" on_change="onchange_version(id)" domain="[('sale_id', '=', id)]"/>
                            </group>
                        <group>
                            <button name="add_version" string="add version" type="object" class="oe_edit_only" />

there is a error, that id is not defined. how can i use dynamic domain

Avatar
Vazgeç

I am also facing the same problem...

Note: we can define domain="[('sale_id', '=', id)]" only in py file

when widget="selection" is used in xml, the domain provided in python file gets overridden

En İyi Yanıt

You can follow this: https://youtu.be/XGqXEL2qQmE 

Hope it helps, Thanks

Avatar
Vazgeç
En İyi Yanıt

You cannot use field id because id field is automatically generated by orm of OpenERP.

You can use active_id or active_ids which indicates your current active records.

Try this:

domain="[('sale_id', '=', active_id)]"
Avatar
Vazgeç
Üretici

active_id alse show 'active_id' not defined
there is no active_id in my context

İlgili Gönderiler Cevaplar Görünümler Aktivite
2
May 24
9072
1
Oca 22
11842
1
Tem 20
15938
6
Oca 24
16160
3
Tem 25
3874