X Tutup
Skip to content

Commit c1f9737

Browse files
committed
Fixed issue with to_ref method on Bill object.
1 parent 1e18766 commit c1f9737

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.rst

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

4+
* 0.6.1 (May 9th, 2017)
5+
* Fixed issue with to_ref method on Bill object.
6+
* Added DefinitionId to CustomField
7+
* Update client.py uploads to be Python3 compatible
8+
49
* 0.6.0 (February 19th, 2017)
510
* Added support for Change Data Capture.
611
* Added ability to delete objects.

quickbooks/objects/bill.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def to_linked_txn(self):
7171
def to_ref(self):
7272
ref = Ref()
7373

74-
ref.name = self.DisplayName
74+
ref.name = self.DocNumber
7575
ref.type = self.qbo_object_name
7676
ref.value = self.Id
7777

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def read(*parts):
1010
return fp.read()
1111

1212

13-
VERSION = (0, 6, 0)
13+
VERSION = (0, 6, 1)
1414
version = '.'.join(map(str, VERSION))
1515

1616
setup(

0 commit comments

Comments
 (0)
X Tutup