__manifest__.py 731 B

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "pos_cache",
  5. 'summary': "Enable a cache on products for a lower POS loading time.",
  6. 'description': """
  7. This creates a product cache per POS config. It drastically lowers the
  8. time it takes to load a POS session with a lot of products.
  9. """,
  10. 'category': 'Sales/Point of Sale',
  11. 'version': '1.0',
  12. 'depends': ['point_of_sale'],
  13. 'data': [
  14. 'data/pos_cache_data.xml',
  15. 'security/ir.model.access.csv',
  16. 'views/pos_cache_views.xml',
  17. ],
  18. 'assets': {
  19. 'point_of_sale.assets': [
  20. 'pos_cache/static/**/*',
  21. ],
  22. },
  23. 'license': 'LGPL-3',
  24. }