Skip to content

Commit

Permalink
Add new field ItemAccountRef to SalesItemLineDetail
Browse files Browse the repository at this point in the history
  • Loading branch information
ej2 committed May 20, 2024
1 parent d77b308 commit 3323363
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions quickbooks/objects/detailline.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ def __init__(self):
class SalesItemLineDetail(QuickbooksBaseObject):
class_dict = {
"ItemRef": Ref,
"ItemAccountRef": Ref,
"ClassRef": Ref,
"TaxCodeRef": Ref,
"PriceLevelRef": Ref,
Expand All @@ -117,6 +118,7 @@ def __init__(self):

self.MarkupInfo = None
self.ItemRef = None
self.ItemAccountRef = None
self.ClassRef = None
self.TaxCodeRef = None
self.PriceLevelRef = None
Expand Down

0 comments on commit 3323363

Please sign in to comment.