__manifest__.py 473 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "Spreadsheet dashboard for stock",
  5. 'category': 'Hidden',
  6. 'summary': 'Spreadsheet',
  7. 'description': 'Spreadsheet',
  8. 'depends': ['spreadsheet_dashboard', 'stock_account'],
  9. 'data': [
  10. "data/dashboards.xml",
  11. ],
  12. 'demo': [],
  13. 'installable': True,
  14. 'auto_install': ['stock_account'],
  15. 'license': 'LGPL-3',
  16. 'assets': {}
  17. }