OGeek|极客世界-中国程序员成长平台

标题: ios - 如何在odoo中创建客户(res.partner)时添加标签(Category_id)? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 15:04
标题: ios - 如何在odoo中创建客户(res.partner)时添加标签(Category_id)?

我正在开发 ODOO iOS 应用程序。 我正在使用 res.partner 模型和 create 方法创建客户。 客户创建成功,没有任何错误,但我在创建过程中选择的标签字段没有生成。

我使用以下代码来创建客户:

NSArray *inputParameter = [NSArray arrayWithObjects:[userDic objectForKey"database"],[userDic objectForKey"userId"],[userDic objectForKey"password"],@"res.partner",@"create",customerDictionary,nil];

    // Show progress hud on main thread
    [[OpenERPGlobal appDelegate] showProgressHUD"lease wait" withView:self.view];

    // Depending on Id's read records
    WebService *service = [[WebService alloc] init];
    [service fetchDataWIthURL:[NSURL URLWithString:[NSString stringWithFormat"%@/xmlrpc/object",[userDic objectForKey"hostUrl"]]] withMethodName:ExecuteFunctionName withParameter:inputParameter withResult:^(id result,NSError *error)
     {
         [[OpenERPGlobal appDelegate] hideProgressHUD];

         if([result isKindOfClass:[NSNumber class]])
         {
            [OpenERPGlobal showMessage"Customer created successfully." delegate:self tag:10 cancelButtonTitle"Ok" otherButtonTitles:nil];
         }
     }

上述调用的输入参数如下:

{
    "category_id" =     (
        17,
        10,
        9,
        13
    );
    city = California;
    email = "[email protected]";
    fax = "";
    function = "";
    "is_company" = 0;
    mobile = "";
    name = "123 Sample Customer";
    phone = "";
    street = "Street address";
    website = "http://www.sample.com";
}

在上面的输入参数中 category_id 是我的标签键。

有人遇到过这种问题吗?



Best Answer-推荐答案


res_partner 对象中category_id 有many2many 关系。所以你需要使用 [6, 0, [ids]]

添加

试试这个值:

{
    "category_id" = [(6, 0, [17, 10, 9, 13])],
    city = California;
    email = "[email protected]";
    fax = "";
    function = "";
    "is_company" = 0;
    mobile = "";
    name = "123 Sample Customer";
    phone = "";
    street = "Street address";
    website = "http://www.sample.com";
}

For more details of Many2one, One2many and Many2many field

关于ios - 如何在odoo中创建客户(res.partner)时添加标签(Category_id)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29643834/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) Powered by Discuz! X3.4