File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed
Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -128,10 +128,10 @@ def __str__(self):
128128class CustomerMemo (QuickbooksBaseObject ):
129129 def __init__ (self ):
130130 super (CustomerMemo , self ).__init__ ()
131- self .Value = ""
131+ self .value = ""
132132
133133 def __str__ (self ):
134- return self .Value
134+ return self .value
135135
136136
137137class MarkupInfo (QuickbooksBaseObject ):
Original file line number Diff line number Diff line change @@ -49,8 +49,6 @@ def __init__(self):
4949 self .Balance = 0
5050 self .AllowIPNPayment = True
5151 self .DocNumber = ""
52- self .TxnDate = ""
53- self .TxnSource = ""
5452 self .PrivateNote = ""
5553 self .DueDate = ""
5654 self .ShipDate = ""
@@ -67,6 +65,7 @@ def __init__(self):
6765 self .BillEmail = None
6866 self .CustomerRef = None
6967 self .CurrencyRef = None
68+ self .CustomerMemo = None
7069 self .DepartmentRef = None
7170 self .TxnTaxDetail = None
7271 self .DeliveryInfo = None
@@ -84,4 +83,4 @@ def to_linked_txn(self):
8483 linked_txn .TxnType = "Invoice"
8584 linked_txn .TxnLineId = 1
8685
87- return linked_txn
86+ return linked_txn
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 , 1 )
13+ VERSION = (0 , 3 , 2 )
1414version = '.' .join (map (str , VERSION ))
1515
1616setup (
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ def test_unicode(self):
6262class CustomerMemoTests (unittest .TestCase ):
6363 def test_unicode (self ):
6464 memo = CustomerMemo ()
65- memo .Value = "value"
65+ memo .value = "value"
6666
6767 self .assertEquals (str (memo ), "value" )
6868
You can’t perform that action at this time.
0 commit comments