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?
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
1
jun 18
|
4212 | ||
|
0
dic 20
|
2253 | ||
|
2
ene 23
|
5170 | ||
|
0
feb 21
|
3340 | ||
|
1
may 20
|
3989 |
Thanks, i will try.