2016-11-23 65 views
0

我想在添加新客户时添加公司名称,任何人都可以提供帮助? 顺便说一下,quickboos-php devkit的文档在哪里,我找不到它。 下面是代码:(consolibyte)quickbooks-php devkit,如何添加公司名称?

$CustomerService = new QuickBooks_IPP_Service_Customer(); 
    //add basic info 
    $Customer = new QuickBooks_IPP_Object_Customer(); 
    $Customer->setTitle($title); 
    $Customer->setGivenName($given_name); 
    $Customer->setMiddleName($middel_name); 
    $Customer->setFamilyName($family_name); 
    $Customer->setDisplayName($display_name); 

    // Phone # 
    $PrimaryPhone = new QuickBooks_IPP_Object_PrimaryPhone(); 
    $PrimaryPhone->setFreeFormNumber($primary_phone); 
    $Customer->setPrimaryPhone($PrimaryPhone); 

    // Mobile # 
    $Mobile = new QuickBooks_IPP_Object_Mobile(); 
    $Mobile->setFreeFormNumber($mobile); 
    $Customer->setMobile($Mobile); 

    // Bill address 
    $BillAddr = new QuickBooks_IPP_Object_BillAddr(); 
    $BillAddr->setLine1($bill_address); 
    $BillAddr->setCity($bill_city); 
    $BillAddr->setCountrySubDivisionCode($bill_state); 
    $BillAddr->setCountry($bill_country); 
    $BillAddr->setPostalCode($bill_zip_code); 
    $Customer->setBillAddr($BillAddr); 

    // Shipping address 
    $ShipAddr = new QuickBooks_IPP_Object_ShipAddr(); 
    $ShipAddr->setLine1($address_1); 
    $ShipAddr->setLine2($address_2); 
    $ShipAddr->setCity($city); 
    $ShipAddr->setCountrySubDivisionCode($province); 
    $ShipAddr->setCountry($country); 
    $ShipAddr->setPostalCode($postal_code); 
    $Customer->setShipAddr($ShipAddr); 

    $customer_id = $CustomerService->add($Context, $realm, $Customer); 
+0

你看项目Github上?它具有指向文档的所有链接:https://github.com/consolibyte/quickbooks-php - 另外,为什么要将公司名称添加到客户?我很确定公司和客户是不同的实体。 –

+0

QuickBooks没有一个单独的“公司”实体的概念。您的客户可能是一家公司,也可能是一名个人,具体取决于您是B2B还是B2C。客户确实在QuickBooks中有一个公司名称字段。 –

+0

@ KeithPalmerJr.Thanks – zif

回答

1

可用字段用于Customer对象名单是Intuit公司的网站:

你可能在寻找:

CompanyName: optional String, maximum of 50 chars, filterable, sortable, default is null The name of the company associated with the person or organization.

不出所料,有一对夫妇的相应方法:

$Customer->setCompanyName($v); 
$v = $Customer->getCompanyName();