Odoo modules related to point of sales
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
969 B

  1. # -*- coding: utf-8 -*-
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  3. {
  4. 'name': "POS Restaurant Table Booking",
  5. 'version': '1.0.0',
  6. 'summary': """
  7. """,
  8. 'description': """
  9. """,
  10. 'author': "La Case",
  11. 'website': "http://www.lacase-jeux.com",
  12. 'maintainer': "La Case",
  13. 'license': 'AGPL-3',
  14. 'category': 'Point of Sale',
  15. 'depends': [
  16. 'pos_restaurant',
  17. ],
  18. 'excludes': [],
  19. 'external_dependencies': {},
  20. 'data': [
  21. 'security/ir_model_access.xml',
  22. 'views/res_config_settings.xml',
  23. 'views/restaurant_booking.xml',
  24. 'views/restaurant_floor.xml',
  25. 'views/restaurant_table_booking.xml',
  26. 'views/restaurant_table.xml',
  27. ],
  28. 'qweb': [],
  29. 'css': [],
  30. 'images': [],
  31. 'demo': [],
  32. 'installable': True,
  33. 'auto_install': False,
  34. 'application': False,
  35. 'pre_init_hook': '',
  36. 'post_init_hook': '',
  37. 'uninstall_hook': '',
  38. }