As per Odoo 10 official documentation, the way to delete data from a model using XMLRPC is:
models.execute_kw(db, uid, password, 'res.partner', 'unlink', [[id]])
If I want to delete all res.partner records, what shall I use as 'id'?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
As per Odoo 10 official documentation, the way to delete data from a model using XMLRPC is:
models.execute_kw(db, uid, password, 'res.partner', 'unlink', [[id]])
If I want to delete all res.partner records, what shall I use as 'id'?
Don't use an ID.
models.execute_kw(db, uid, password, 'res.partner', 'unlink', [[]])Why [[]] instead of []?
search_ids = models.execute_kw(db, uid, password, 'res.partner', 'search', [])
models.execute_kw(db, uid, password, 'res.partner', 'unlink', search_ids)
Hope this will help you.
Ray's answer is faster to solve the specific issue, but using a search points how to select a given set of IDs (which might be really useful)
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up| Related Posts | Replies | Views | Activity | |
|---|---|---|---|---|
|
0
नव॰ 18
|
3122 | |||
|
2
नव॰ 18
|
9147 | |||
|
1
सित॰ 17
|
4385 | |||
|
3
अग॰ 17
|
6521 | |||
|
0
मई 23
|
3183 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.