__manifest__.py 570 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Indian - Stock Report(GST)',
  5. 'icon': '/l10n_in/static/description/icon.png',
  6. 'version': '1.0',
  7. 'description': """GST Stock Report""",
  8. 'category': 'Accounting/Localizations',
  9. 'depends': [
  10. 'l10n_in',
  11. 'stock',
  12. ],
  13. 'data': [
  14. 'views/report_stockpicking_operations.xml',
  15. ],
  16. 'demo': [
  17. 'data/product_demo.xml',
  18. ],
  19. 'installable': True,
  20. 'auto_install': True,
  21. 'license': 'LGPL-3',
  22. }