콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
3167 화면

Hi there,

I am using PHP to integrate XML-RPC with odoo.
I was trying to create a logged call for lead, so the call log will show under the detail of the lead.

the below code is created the log which is showing under 'Call Logs'. But not shows in the detail view of the lead (442).


        $vals = array(
        'user_id'=>new xmlrpcval('6', "string"),
        'name'=>new xmlrpcval('John Mo', "string"),
        'description'=>new xmlrpcval('API Call', "string"),
        'partner_phone'=>new xmlrpcval('+1911111111', "string"),
        'date_closed'=>new xmlrpcval(date("Y-m-d H:i:s"), "string"),
        'opportunity_id'=>new xmlrpcval(442, "int"),
        'contact_name'=>new xmlrpcval('Mo 2', "string"),
        'categ_id'=>new xmlrpcval('10', "int"),
        'action'=>new xmlrpcval('log', "string")
        );
    $call_id = $rpc->create($vals, "crm.phonecall");

Anything from experts will be a great help.

Thanks,
Mahbub

 

아바타
취소