如何向现有客户添加作业。我已尝试过CustomerAddRq和CustomerModRq,但都不起作用。我的客户希望为每个客户合同创建一份新工作,并按工作跟踪发票和账单。
会感激一些帮助。
答案 0 :(得分:1)
要添加作业,请致电CustomerAdd
并指定父客户的ParentRef
。
例如:
<CustomerAddRq>
<CustomerAdd>
<Name>Child Customer Name</Name>
<ParentRef>
<FullName>Parent Customer Name</FullName>
</ParentRef>
<FirstName>Keith</FirstName>
<LastName>Palmer</LastName>
<Phone>860-634-1602</Phone>
<Email>support@consolibyte.com</Email>
</CustomerAdd>
</CustomerAddRq>
以下是一些其他示例: