我正在开发 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-推荐答案 strong>
在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/
|