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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…