File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,4 +55,8 @@ coverage.xml
5555docs /_build /
5656
5757# PyBuilder
58- target /
58+ target /
59+
60+ # OSX
61+ .DS_Store
62+ .idea /
Original file line number Diff line number Diff line change 11Changelog
22========
33
4+ * 0.3.12 (March 18, 2016)
5+ * Updated field defaults on SalesReceipt object.
6+ * Updated Id field default on BillLine object.
7+ * Updated Id field default on DepositLine object.
8+ * Updated Id field default on PurchaseLine object.
9+ * Updated Id field default on PurchaseOrderLine object.
10+ * Added support for downloading PDFs.
11+ * Added .DS_Store and .idea/ to .gitignore.
12+
413* 0.3.11 (February 24, 2016)
514 * Updated field defaults on Payment object.
615 * Added minor version 4 field to Payment object.
Original file line number Diff line number Diff line change @@ -66,10 +66,10 @@ class BillLine(QuickbooksBaseObject):
6666 def __init__ (self ):
6767 super (BillLine , self ).__init__ ()
6868
69- self .Id = 0
69+ self .Id = None
7070 self .LineNum = 0
7171 self .Description = ""
72- self .Amount = ""
72+ self .Amount = 0
7373 self .DetailType = "AccountBasedExpenseLineDetail"
7474
7575 self .AccountBasedExpenseLineDetail = None
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ class DepositLine(QuickbooksBaseObject):
7070
7171 def __init__ (self ):
7272 super (DepositLine , self ).__init__ ()
73- self .Id = 0
73+ self .Id = None
7474 self .LineNum = 0
7575 self .Description = ""
7676 self .Amount = 0
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ class PurchaseLine(QuickbooksBaseObject):
6666
6767 def __init__ (self ):
6868 super (PurchaseLine , self ).__init__ ()
69- self .Id = 0
69+ self .Id = None
7070 self .LineNum = 0
7171 self .Description = ""
7272 self .Amount = 0
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class PurchaseOrderLine(QuickbooksBaseObject):
4343
4444 def __init__ (self ):
4545 super (PurchaseOrderLine , self ).__init__ ()
46- self .Id = 0
46+ self .Id = None
4747 self .LineNum = 0
4848 self .Description = ""
4949 self .Amount = 0
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def read(*parts):
1010 return fp .read ()
1111
1212
13- VERSION = (0 , 3 , 11 )
13+ VERSION = (0 , 3 , 12 )
1414version = '.' .join (map (str , VERSION ))
1515
1616setup (
You can’t perform that action at this time.
0 commit comments