Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
6066 มุมมอง

I have been working on openerp module development .Today I faced some difficulties while returning dictionary values to a many2one field. I did this thing successfully before but this time I am having some keyerror when try to load openerp server.I checked that my query is working fine and is bringing the exact ids and names but on returning I am getting issue. I am using query to fetch the ids and trying to return them.Here is my code:

def myfunc_name(self,cr,uid,ids,context=None):

domain = [ ]

cr.execute ( ' select id , name from product_category where parent_id is NULL ' )

res = cr.fetchall ( )

for pid,name in res:

         domain.append ( ( pid ) )

         return { ' value ' : { ' categ_temps ' : [ ( ' id ' , ' in ' , domain ) ] } }

 

Please point me my mistake or guide me so that I can get my work done soon. Regards n Thanks

 

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Your return dictionary is wrong.

If you want to return domain you should return like this: `{ 'domain' : { 'categ_temps' : [ ( 'id' , 'in' , domain ) ] } }

If you want to return value you should return like this: `{ 'value' : { 'categ_temps' : [ ( 'id' , 'in' , domain ) ] } }

You may get more information regarding onchange event: https://doc.openerp.com/6.0/developer/2_6_views_events/events/events/#on-change

You should also know that there is an issue with readonly fields used by the onchange-method. See this bug report:https://bugs.launchpad.net/openobject-client/+bug/378824

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ก.พ. 23
2401
2
ส.ค. 19
4607
0
ส.ค. 18
4771
how to get modules dependencies แก้ไขแล้ว
3
มี.ค. 24
11675
0
เม.ย. 21
2797