Browse Source

Listing orders implemented

Jovian (Netbook) 6 years ago
parent
commit
bcaa914304
4 changed files with 23 additions and 1 deletions
  1. 2 0
      app_customer.py
  2. 9 0
      basic_display.py
  3. 11 0
      consumer/connect.py
  4. 1 1
      model/ori.py

+ 2 - 0
app_customer.py

@@ -44,6 +44,8 @@ while running:
         print('book list :', bookList)
         bookId = bookAsker.select(bookList)
         print('book selected :', bookId)
+        itemList = consumer.getItemsOfOrder(bookId)
+        display.orderedItemList(itemList)
     else:
         print('Action', action, 'not implemented yet.')
 

+ 9 - 0
basic_display.py

@@ -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)

+ 11 - 0
consumer/connect.py

@@ -50,6 +50,17 @@ class DataConsumer():
 
         return rows
 
+    def getItemsOfOrder(self, bookId):
+        cursor = self.conn.cursor()
+
+        cursor.execute("SELECT ori_id, ori_quantity, pro_name, ori_deliveryduedate FROM ordereditem NATURAL JOIN product WHERE ord_id = %s", (bookId,))
+
+        rows = cursor.fetchall()
+
+        cursor.close()
+
+        return rows
+        
     def commit(self):
         """Make the changes to the database persistent"""
         self.conn.commit()

+ 1 - 1
model/ori.py

@@ -1,4 +1,4 @@
 class Ori():
     """Bean for an ordered item"""
     def __init__(self, raw):
-        (self.id, self.quantity, self.deliveryDueDate, self.pro_id, self.ord_id, self.war_id) = raw
+        (self.id, self.quantity, self.name, self.date) = raw