Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.4k views
in Technique[技术] by (71.8m points)

python 3.x - Odoo 13 API how to save null search results as a string

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
if not wanted_ids:
    wanted_ids = ['Nothing found']

This is pure Python, I think so


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...