تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
7284 أدوات العرض

Ok so i'm building this android app base on openERP and i'm currently stuck with create.

I managed to login fine and pretty much got an idea about everything works but i'm stuck at the following two errors for hours.

First is " 'str' object has no attribute 'pop' ".

Second one is " 'pop() takes at most 1 argument (2 given)' ".

I'm using XMLRPC with minor modifications since for errors it returns int while openERP returns string.

Below is the create function im calling

public void Create(Object[] Params) throws XMLRPCException{
    Log.d("Reached","Create before configured");
    if (configured){
        Log.d("Reached","reached Create");
        String name = "konto";
        String lang = "en_EN";
        Object[] pop = {"konto"};
        rtype="create";
        uri = URI.create(server+"/xmlrpc/object");
        client = new XMLRPCClient(uri);
        XMLRPCMethod method = new XMLRPCMethod("execute",this);
           //i believe i need help with the line below 
        Object[] params = {dbname,Integer.parseInt(userid),dbpass,model,"create", pop};
        method.call(params); 

    }
}

Tried various ways of declaring the pop as well as parsing String but still haven't figured out how to pass the parameters to create something.

In this case i'm trying to create a costumer so model is res.partner.

All help is appreciated. Thank you

الصورة الرمزية
إهمال
أفضل إجابة

Nonepop means that instead of an instance of whatever Class or Object you think you're working with, you've actually got 

None

. That usually means that an assignment or function call up above failed or returned an unexpected result.

الصورة الرمزية
إهمال
أفضل إجابة

I have the same problem did you fix it? 

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
0
أغسطس 16
3961
0
ديسمبر 15
3894
2
نوفمبر 20
16160
1
فبراير 23
11859
0
أغسطس 22
2162