Skip to content

Commit 4197205

Browse files
committed
some detail line strings were our of line with the docs
1 parent 4cb2b6d commit 4197205

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

quickbooks/objects/detailline.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class SubtotalLine(DetailLine):
8282

8383
def __init__(self):
8484
super(SubtotalLine, self).__init__()
85-
self.DetailType = "SubtotalLineDetail"
85+
self.DetailType = "SubTotalLineDetail"
8686
self.SubtotalLineDetail = None
8787

8888

@@ -157,8 +157,8 @@ class GroupLine(DetailLine):
157157

158158
def __init__(self):
159159
super(GroupLine, self).__init__()
160-
self.DetailType = "SalesItemLineDetail"
161-
self.SalesItemLineDetail = None
160+
self.DetailType = "GroupLineDetail"
161+
self.GroupLineDetail = None
162162

163163

164164
class DescriptionOnlyLine(DetailLine):
@@ -168,7 +168,7 @@ class DescriptionOnlyLine(DetailLine):
168168

169169
def __init__(self):
170170
super(DescriptionOnlyLine, self).__init__()
171-
self.DetailType = "DescriptionLineDetail"
171+
self.DetailType = "DescriptionOnly"
172172
self.DescriptionLineDetail = None
173173

174174

0 commit comments

Comments
 (0)