QuickBooks-V3-PHP-SDK icon indicating copy to clipboard operation
QuickBooks-V3-PHP-SDK copied to clipboard

Official PHP SDK for QuickBooks REST API v3.0: https://developer.intuit.com/

Results 116 QuickBooks-V3-PHP-SDK issues
Sort by recently updated
recently updated
newest added

So we're having an issue with our application that it is not always succeeding in transferring invoices to quickbooks, upon further inspection I found this line of code: https://github.com/intuit/QuickBooks-V3-PHP-SDK/blob/a4139a9cc439a5c03edec070d56344b1dc82056f/src/Core/Http/Serialization/XmlObjectSerializer.php#L124 The...

Hi, I'm not sure if this is a bug or not, but when updating an Invoice the total amount is update but the taxes value are not updated: ``` $invoice...

Changed constant variable names to abide by typical naming convention.

https://github.com/intuit/QuickBooks-V3-PHP-SDK/pull/420 I've seen others with the same error messages I was seeing yesterday "CustomerRef is missing" from posting an Invoice object. Using JSON, the serializer 'removeNullProperties' method was filtering out...

Existing removeNullProperties filtered out standard arrays, causing problems. Specifically, an $invoice object with $customerRef on it (with $customerRef['value']) was filtered out, causing "CustomerRef is missing" validation errors. I added the...

https://developer.intuit.com/app/developer/qbo/docs/develop/sdks-and-samples-collections/php/synchronous-calls#batch-process The following example code from the above link is incorrect: `$batch->AddQuery("select * from Customer startPosition 0 maxResults 20", "queryCustomer", "uniqueQuery");` AddQuery takes 2 parameters: ```php /** * Adds the...

``` /** * Current QuickBooks Namespace for PHP SDK * @var int Deflate */ const NAMEPSACE_DATA_PREFIX = 'QuickBooksOnline\\API\\Data\\'; ``` NAMEPSACE_DATA_PREFIX should be NAMESPACE_DATA_PREFIX

NAMEPSACE_DATA_PREFIX changed to NAMESPACE_DATA_PREFIX in CoreConstants.php src/XSD2PHP/src/com/mikebevz/xsd2php/Bind.php src/Core/Http/Serialization/XmlObjectSerializer.php src/Utility/MetadataExtractor.php src/Facades/FacadeHelper.php Fixes #409

ReportService.php Line 279 should be: * @param **string** $accounting_method

hacktoberfest