aboutsummaryrefslogtreecommitdiffstats
path: root/gsxws/orders.py
diff options
context:
space:
mode:
Diffstat (limited to 'gsxws/orders.py')
-rw-r--r--gsxws/orders.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/gsxws/orders.py b/gsxws/orders.py
index 1687931..e097cf6 100644
--- a/gsxws/orders.py
+++ b/gsxws/orders.py
@@ -1,6 +1,9 @@
-class Order(GsxObject):
+from core import GsxObject
+
+
+class StockingOrder(GsxObject):
def __init__(self, type='stocking', *args, **kwargs):
- super(Order, self).__init__(*args, **kwargs)
+ super(StockingOrder, self).__init__(*args, **kwargs)
self.data['orderLines'] = list()
def add_part(self, part_number, quantity):