__manifest__.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Product Availability',
  5. 'category': 'Website/Website',
  6. 'summary': 'Manage product inventory & availability',
  7. 'description': """
  8. Manage the inventory of your products and display their availability status in your eCommerce store.
  9. In case of stockout, you can decide to block further sales or to keep selling.
  10. A default behavior can be selected in the Website settings.
  11. Then it can be made specific at the product level.
  12. """,
  13. 'depends': [
  14. 'website_sale',
  15. 'sale_stock',
  16. ],
  17. 'data': [
  18. 'views/product_template_views.xml',
  19. 'views/res_config_settings_views.xml',
  20. 'views/website_sale_stock_templates.xml',
  21. 'views/stock_picking_views.xml',
  22. 'views/website_pages_views.xml',
  23. 'data/template_email.xml',
  24. 'data/ir_cron_data.xml',
  25. ],
  26. 'demo': [
  27. 'data/website_sale_stock_demo.xml',
  28. ],
  29. 'auto_install': True,
  30. 'assets': {
  31. 'web.assets_frontend': [
  32. 'website_sale_stock/static/src/js/**/*',
  33. 'website_sale_stock/static/src/xml/**/*',
  34. ],
  35. 'web.assets_tests': [
  36. 'website_sale_stock/static/tests/tours/website_sale_stock_multilang.js',
  37. 'website_sale_stock/static/tests/tours/website_sale_stock_stock_notification.js',
  38. ],
  39. },
  40. 'license': 'LGPL-3',
  41. }