basic_display.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. from model.product import Product
  2. from model.ord import Ord
  3. from model.ori import Ori
  4. from model.house import Warehouse
  5. class BasicDisplay():
  6. def title(self, title):
  7. n = len(title) + 2
  8. bar = '+' + '-' * n + '+'
  9. print(bar)
  10. print('|', title, '|')
  11. print(bar)
  12. def error(self, *message):
  13. print('ERROR :', *message)
  14. def product(self, p):
  15. print(p.id ,':', p.name)
  16. def productList(self, pList):
  17. for pRaw in pList:
  18. p = Product(pRaw)
  19. self.product(p)
  20. def bookOrder(self, b):
  21. print(b.id, ':', b.date)
  22. def bookOrderList(self, bList):
  23. for bRaw in bList:
  24. b = Ord(bRaw)
  25. self.bookOrder(b)
  26. def orderedItem(self, i):
  27. print(i.id, ':', i.quantity, 'g of', i.name, 'dued', i.date)
  28. def orderedItemList(self, iList):
  29. for iRaw in iList:
  30. i = Ori(iRaw)
  31. self.orderedItem(i)
  32. def warehouse(self, w):
  33. print('Warehouse', w.id, ':', w.number, w.name, ',', w.city)
  34. def warehouseList(self, wList):
  35. for wRaw in wList:
  36. w = Warehouse(wRaw)
  37. self.warehouse(w)