Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
4984 Lượt xem

Hello all,

I'm using a lot xmlrpclib in python to generate automatically a lot of stuff in my openerp.

I have now a problem with the expenses, HR expenses.

In the database, it is in hr.expense.expense.

and when I do a search like that :

#Config for API
openErpUser = 'User'
openErpPassword = 'password'
openErpBase = 'openerpbase' 
openErpCommon = 'localhost:8069/xmlrpc/common' #the xmlrpc common URL
openErpObject = 'localhost:8069/xmlrpc/object' #the xmlrpc object URL

#Connect to API
sock_common = xmlrpclib.ServerProxy (openErpCommon)
uid = sock_common.login(openErpBase, openErpUser, openErpPassword)
sock = xmlrpclib.ServerProxy(openErpObject)

#Search all the expenses that have been done after January 1st 2013
searchArgs = [('date', '>', '2013-01-01'),]
expenseIds = sock.execute(openErpBase, uid, openErpPassword, 'hr.expense.expense', 'search', searchArgs)

And the expenseIds is empty (and I have at least 10 exepenses done after this date).

When I do this with invoices, it works perfectly, but, whith these expenses. So far, I'm stuck :/

Who can help me ?

Ảnh đại diện
Huỷ bỏ

Where can I get the API list of all the objects like hr.expense.expense?

Tác giả

What I do is to look at the tables names in the database and I replace the _ by a dot and that's it !

Tác giả Câu trả lời hay nhất

I've found the problem.

It is because the user I was using to connect with the script didn't have the access rights in Configuration-->Users-->Users-->HR. You have to put him as a manager instead of an employee (as it was by default).

Hope it will help other people

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 3 15
4947
2
thg 9 20
5911
1
thg 11 19
6823
2
thg 3 15
18028
1
thg 3 15
11663