__manifest__.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Restaurant',
  5. 'version': '1.0',
  6. 'category': 'Sales/Point of Sale',
  7. 'sequence': 6,
  8. 'summary': 'Restaurant extensions for the Point of Sale ',
  9. 'description': """
  10. This module adds several features to the Point of Sale that are specific to restaurant management:
  11. - Bill Printing: Allows you to print a receipt before the order is paid
  12. - Bill Splitting: Allows you to split an order into different orders
  13. - Kitchen Order Printing: allows you to print orders updates to kitchen or bar printers
  14. """,
  15. 'depends': ['point_of_sale'],
  16. 'website': 'https://www.odoo.com/app/point-of-sale-restaurant',
  17. 'data': [
  18. 'security/ir.model.access.csv',
  19. 'views/pos_order_views.xml',
  20. 'views/pos_restaurant_views.xml',
  21. 'views/res_config_settings_views.xml',
  22. ],
  23. 'demo': [
  24. 'data/pos_restaurant_demo.xml',
  25. ],
  26. 'installable': True,
  27. 'assets': {
  28. 'point_of_sale.assets': [
  29. 'pos_restaurant/static/lib/**/*.js',
  30. 'pos_restaurant/static/src/js/**/*.js',
  31. ('after', 'point_of_sale/static/src/scss/pos.scss', 'pos_restaurant/static/src/scss/restaurant.scss'),
  32. 'pos_restaurant/static/src/xml/**/*',
  33. ],
  34. 'web.assets_backend': [
  35. 'point_of_sale/static/src/scss/pos_dashboard.scss',
  36. ],
  37. 'web.assets_tests': [
  38. 'pos_restaurant/static/tests/tours/**/*',
  39. ],
  40. },
  41. 'license': 'LGPL-3',
  42. }