Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
5010 มุมมอง

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 ?

อวตาร
ละทิ้ง

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

ผู้เขียน

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

ผู้เขียน คำตอบที่ดีที่สุด

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

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
1
มี.ค. 15
4951
2
ก.ย. 20
5922
1
พ.ย. 19
6826
2
มี.ค. 15
18041
1
มี.ค. 15
11668