我有以下代碼:SugarCRM的REST更新高炮關係聯繫人和帳戶的JavaScript
$.get(CurrentServerAddress + '/service/v2/rest.php', {
method: "set_relationship",
input_type: "JSON",
response_type: "JSON",
rest_data: '{"session":"' + SugarSessionId + '","module_name":"Contacts","module_id":"' + CurrentContactId + '","link_field_name":"accounts","related_ids":["'+ CurrentAccountId +'"]}'
}, function(data) {
if (data !== undefined) {
var addAccountResult = jQuery.parseJSON(data);
}
});
聯繫人和公司合作得非常好之間的關係。我現在想分配一個新的公司給聯繫人。我不知道怎麼做。
你的意思是「刪除」:「0」在/ /添加上一個關係。還有一個問題:我如何得到[「'+ OldAccountId +'」]? – Miky 2012-08-10 06:26:23
是在添加部分是刪除:0。對於表示您的修改前的聯繫人條目中的currant account_id字段的OldAccountId – 2012-08-30 05:42:35
謝謝你的工作。其實CurrentAccountId是NewAccountId – Miky 2012-10-04 06:30:16