Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f33d96f

Browse files
authored
Merge pull request Matthelonianxl#1 from sidecars/master
merge master from sidecars/python-quickbooks
2 parents 9c653ad + df05967 commit f33d96f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+2476
-882
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
__pycache__/
33
*.py[cod]
44
*$py.class
5+
.idea/*
56

67
# C extensions
78
*.so
@@ -36,6 +37,7 @@ pip-delete-this-directory.txt
3637

3738
# Unit test / coverage reports
3839
htmlcov/
40+
.env
3941
.tox/
4042
.coverage
4143
.coverage.*
@@ -55,4 +57,8 @@ coverage.xml
5557
docs/_build/
5658

5759
# PyBuilder
58-
target/
60+
target/
61+
62+
#OSX
63+
.DS_Store
64+
.idea/

CHANGELOG.rst

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,67 @@
11
Changelog
22
========
33

4+
* 0.5.5 (January 4th, 2017)
5+
* Imported QuickBooks objects into __init__.py for easier imports
6+
* Removed duplicate class AttachableRef from deposit.py
7+
* Removed duplicate class DescriptionLineDetail from journalentry.py
8+
* Removed duplicate class DescriptionOnlyLine from journalentry.py
9+
10+
* 0.5.4 (November 29th, 2016)
11+
* Added quickbooks client parameter to QuickbooksPdfDownloadable mixin.
12+
13+
* 0.5.3 (October 14th, 2016)
14+
* Fixed issue in build_choose_clause and build_where_clause that caused single quotes to not be escaped.
15+
16+
* 0.5.2 (October 14th, 2016)
17+
* Fixed issue on UpdateMixin.
18+
* Fixed issue with CashBackInfo.
19+
20+
* 0.5.1 (July 25, 2016)
21+
* Updated qb_datetime_utc_offset_format to support python 2.6.
22+
23+
* 0.5.0 (July 25, 2016)
24+
* Added ability to query current user.
25+
* Added support to reconnect an account.
26+
* Added to_ref method to Bill object.
27+
* Added to_ref method to TaxCode.
28+
* Added date and datetime format helper functions.
29+
* Fixed issues creating notes with Attachable.
30+
* Fixed issues with default values on the following objects: Deposit, Employee, Estimate, TimeActivity, Term, Transfer, TaxService and TaxRateDetails
31+
* Fixed issues that prevented save from working on TaxService.
32+
* Removed unsupported save method from TaxRate.
33+
* Removed unsupported save method from TaxCode.
34+
* Fixed issues loading detail lines on the following objects: JournalEntry, CreditMemo, Bill, Purchase and PurchaseOrder.
35+
* Removed the following objects: CreditMemoLine, BillLine, JournalEntryLine, PurchaseLine, and PurchaseOrderLine.
36+
* Corrected spelling of object SaleItemLine to SalesItemLine.
37+
38+
39+
* 0.4.0 (June 15, 2016)
40+
* Added a way of disconnecting a Quickbooks Account to client.
41+
* Added support for Quickbooks Reports.
42+
* Added support for Quickbooks Attachments.
43+
* Added missing object names to isvalid_object_name.
44+
* Fixed issue with PurchaseEx on Purchase
45+
* Removed CompanyInfo from object names used by isvalid_object_name.
46+
* Changed default of TxnSource to None on the following objects: Deposit, Purchase, RefundReceipt, and Transfer.
47+
* Changed TxnTaxDetail from a QuickbooksManagedObject to a QuickbooksBaseObject.
48+
49+
* 0.3.13 (May 18, 2016)
50+
* Added option to enable or disable singeton pattern (it defaults to disabled).
51+
* Improved error handling.
52+
* Added missing field CurrencyRef on BillPayment.
53+
* Fixed issue on TaxRate.
54+
* Fixed issue with authorize url.
55+
56+
* 0.3.12 (March 18, 2016)
57+
* Updated field defaults on SalesReceipt object.
58+
* Updated Id field default on BillLine object.
59+
* Updated Id field default on DepositLine object.
60+
* Updated Id field default on PurchaseLine object.
61+
* Updated Id field default on PurchaseOrderLine object.
62+
* Added support for downloading PDFs.
63+
* Added .DS_Store and .idea/ to .gitignore.
64+
465
* 0.3.11 (February 24, 2016)
566
* Updated field defaults on Payment object.
667
* Added minor version 4 field to Payment object.

0 commit comments

Comments
 (0)