Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am using the Odoo 13 api as such.

  wanted_ids= models.execute_kw(db, uid, password,
                                        'res.partner', 'search_read',
                                        [[['name', '=',False]]],
                                            )
    print(wanted_ids)

as expected nothing is returned.

[]

What I want instead of null

['Nothing found']

I am not sure how to approach this. I have tried to raise exceptions but this does not save to the wanted_ids variable.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

if not wanted_ids:
    wanted_ids = ['Nothing found']

This is pure Python, I think so


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...