My code:
var res = rpc.query({
model: 'my model',
method: 'read',
args: [????]
}).then(function (data) {
console.log(data); });
};
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
My code:
var res = rpc.query({
model: 'my model',
method: 'read',
args: [????]
}).then(function (data) {
console.log(data); });
};
Hi @Pavel
You could do it like this:
var model = 'res.partner';
// Use an empty array to search for all the records
var domain = [];
// Use an empty array to read all the fields of the records
var fields = [];
rpc.query({
model: model,
method: 'search_read',
args: [domain, fields],
}).then(function (data) {
console.log(data);
});
Hi, is the domain the id of the record from model?
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
AanmeldenGerelateerde posts | Antwoorden | Weergaven | Activiteit | |
---|---|---|---|---|
|
1
jun. 18
|
4315 | ||
|
0
dec. 20
|
2294 | ||
|
2
jan. 23
|
5277 | ||
|
0
feb. 21
|
3414 | ||
|
1
mei 20
|
4131 |
Thanks, i will try.