basic_display.py 918 B

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