Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
2 Ответы
17265 Представления

Hi, I search how to interact with openerp database in javascript. I've found this example on the API documentation but it's don't works.

    var Users = new openerp.web.Model('res.users');
    Users.query(['name', 'login', 'user_email', 'signature'])
         .filter([['active', '=', true], ['company_id', '=', main_company]])
         .limit(15)
         .all().then(function (users) {
        // do work with users records
        alert(users)
    });

The error:

Object [object Object] has no method 'query'

Do you know why?

Thanks in advance for your help.

Аватар
Отменить
Лучший ответ

Where you coding their should be 'openerp' as function parameter in top line of file. or 'instance' as parameter

new openerp.web.Model('res.users');

or new instance.web.Model('res.users');

So which once used try that one.  I double check and its working.

 

 

Аватар
Отменить
Лучший ответ

You should take a look at this :

http://thierry-godin.developpez.com/openerp/openerp-module-pos-enhanced-fr/

and this :  http://thierry-godin.developpez.com/openerp/tutoriel-openerp-realisation-module-web-pour-point-vente/

You may find examples here (english version available)

Аватар
Отменить
Related Posts Ответы Просмотры Активность
1
авг. 24
2203
4
дек. 20
12208
0
июл. 17
3275
1
мар. 15
4551
0
июн. 19
3973