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?
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
Jun 18
|
3936 | ||
|
0
Dec 20
|
2003 | ||
|
2
Jan 23
|
4692 | ||
|
0
Feb 21
|
3013 | ||
|
1
May 20
|
3475 |
Thanks, i will try.