Skip to content

Commit 92b64d1

Browse files
authored
Merge pull request ej2#183 from mitchellsullivan/estimate-send-mixin
Add SendMixin to Estimate object
2 parents bac499a + 878b6a2 commit 92b64d1

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

quickbooks/objects/estimate.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@
33
LinkedTxnMixin, QuickbooksTransactionEntity, LinkedTxn
44
from .tax import TxnTaxDetail
55
from .detailline import DetailLine, SalesItemLine, GroupLine, DescriptionLine, DiscountLine, SubtotalLine
6-
from ..mixins import QuickbooksPdfDownloadable, DeleteMixin
6+
from ..mixins import QuickbooksPdfDownloadable, DeleteMixin, SendMixin
77

88

99
@python_2_unicode_compatible
10-
class Estimate(DeleteMixin, QuickbooksPdfDownloadable, QuickbooksManagedObject, QuickbooksTransactionEntity, LinkedTxnMixin):
10+
class Estimate(DeleteMixin,
11+
QuickbooksPdfDownloadable,
12+
QuickbooksManagedObject,
13+
QuickbooksTransactionEntity,
14+
LinkedTxnMixin,
15+
SendMixin):
1116
"""
1217
QBO definition: The Estimate represents a proposal for a financial transaction from a business to a customer
1318
for goods or services proposed to be sold, including proposed pricing.

0 commit comments

Comments
 (0)