Skip to content

Commit

Permalink
Add Qty and UnitPrice fields to invoice_line
Browse files Browse the repository at this point in the history
  • Loading branch information
hsyyid committed Mar 23, 2021
1 parent 3064c26 commit 8cc077b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_version():
readme = f.read()

setup(name='tap-quickbooks',
version='1.4.30',
version='1.4.31',
description='Singer.io tap for extracting data from the Quickbooks API',
author='hotglue',
url='http://hotglue.xyz/',
Expand Down
4 changes: 3 additions & 1 deletion tap_quickbooks/quickbooks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,9 @@ def field_to_property_schema(field, mdata): # pylint:disable=too-many-branches
"properties": {
"ItemRef": qb_types["object_reference"],
"ItemAccountRef": qb_types["object_reference"],
"TaxCodeRef": qb_types["object_reference"]
"TaxCodeRef": qb_types["object_reference"],
"Qty": number_type,
"UnitPrice": number_type
}
},
"SubTotalLineDetail": {
Expand Down

0 comments on commit 8cc077b

Please sign in to comment.