Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
12121 Tampilan

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'?

Avatar
Buang
Jawaban Terbai

Don't use an ID.

models.execute_kw(db, uid, password, 'res.partner', 'unlink', [[]])
Avatar
Buang
Penulis

Why [[]] instead of []?

Jawaban Terbai
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.

Avatar
Buang
Penulis

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)

Post Terkait Replies Tampilan Aktivitas
0
Nov 18
2479
2
Nov 18
8380
1
Sep 17
3703
3
Agu 17
5848
0
Mei 23
2371