|
@@ -1,5 +1,6 @@
|
|
|
from model.product import Product
|
|
|
from model.ord import Ord
|
|
|
+from model.ori import Ori
|
|
|
|
|
|
class BasicDisplay():
|
|
|
def product(self, p):
|
|
@@ -17,3 +18,11 @@ class BasicDisplay():
|
|
|
for bRaw in bList:
|
|
|
b = Ord(bRaw)
|
|
|
self.bookOrder(b)
|
|
|
+
|
|
|
+ def orderedItem(self, i):
|
|
|
+ print(i.id, ':', i.quantity, 'g of', i.name, 'dued', i.date)
|
|
|
+
|
|
|
+ def orderedItemList(self, iList):
|
|
|
+ for iRaw in iList:
|
|
|
+ i = Ori(iRaw)
|
|
|
+ self.orderedItem(i)
|