php - how to send custom field to quickbooks? -
i'm using php_devkit_v3 send invoice quickbook. code working fine simple invoice when send custom field don't add custom field invoice. add custom field in quickbook->companysetting->sales->custom field. again failed add custom field code i'm using given below
$customfield = new quickbooks_ipp_object_customfield(); $customfield->setname('pod'); $customfield->settype('stringtype'); $customfield->setstringvalue('dfsdfsfd'); $invoice->addcustomfield($customfield); if ($resp = $invoiceservice->add($context, $realm, $invoice)) { print('our new invoice id is: [' . $resp . ']'); } else { print($invoiceservice->lasterror()); }
kindly guide me how can this?
finally had done sending definition id qb below
$customfield = new quickbooks_ipp_object_customfield(); $customfield->setdefinitionid(1); $customfield->setname('pod'); $customfield->settype('stringtype'); $customfield->setstringvalue($pod); $invoice->addcustomfield($customfield);
it may others i'm posting solution. i'm bit week in english code understandable
Comments
Post a Comment