forked from ej2/python-quickbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrackingclass.py
More file actions
38 lines (29 loc) · 1.09 KB
/
trackingclass.py
File metadata and controls
38 lines (29 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from six import python_2_unicode_compatible
from .base import QuickbooksManagedObject, QuickbooksTransactionEntity, Ref
@python_2_unicode_compatible
class Class(QuickbooksManagedObject, QuickbooksTransactionEntity):
"""
QBO definition: Classes provide a way to track different segments of the business so they're
not tied to a particular client or project. For example, you can define classes to break down
the income and expenses for each business segment. Classes are applied to individual detail
lines of a transaction. This is in contrast to Department objects, which are applied to the
entire transaction.
"""
class_dict = {
"ParentRef": Ref
}
qbo_object_name = "Class"
def __init__(self):
super(Class, self).__init__()
self.Name = ""
self.SubClass = False
self.FullyQualifiedName = ""
self.Active = True
def __str__(self):
return self.Name
def to_ref(self):
ref = Ref()
ref.name = self.Name
ref.type = self.qbo_object_name
ref.value = self.Id
return ref