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

The Documentation states that the various methods of the class openerp.osv.orm.BaseModel like browse, search, write, etc. can receive and return a single id/record.

Example: return value for browse method:

Return type: object or list of objects requested

Or select argument for browse method:

select -- id or list of ids.

Or return value for search method:

Returns: id or list of ids of records matching the criteria

I often have the feeling that this is not true and all methods allways expect and return lists.

Is my feeling wrong?

 

EDIT (in lack of comment functionality):

Thx, Mr. Reis. You are quite right! But is it also true for search?

EDIT:

Search always returns a list. The documentation is wrong. (Although the technical memento states it correctly).

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

It's actually True:

If you do `object.browse(cr, uid, id)`you get one Browse record use use dot-notations directlty on it.

If you do `object.browse(cr, uid, [ids])` you get a *list* of Browse and you should iterate on it to deal with each Browse record.

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

It's a good practice to always

  • send or return a list of ids
self.write(cr, uid, [lead.id], vals, context=context)
  • expect both
if isinstance(ids, (int, long)):
    ids = [ids]

 

copy is one of the only method of the orm that expects an int instead of a list.

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

Yes, it is right that most of the ORM methods accepts list of IDs and some of them returns list of IDs or single ID.

Search methods returns list of IDs, write, unlink returns True and create returns new ID.

You can see all the methods here: http://bazaar.launchpad.net/~openerp/openobject-server/7.0/view/head:/openerp/osv/orm.py

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
9
ก.พ. 17
11248
4
ม.ค. 16
10418
0
มี.ค. 15
4918
0
มี.ค. 15
4806
How to trigger function on object write? แก้ไขแล้ว
4
มิ.ย. 20
27054