__manifest__.py 837 B

12345678910111213141516171819202122232425262728293031
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "India Sales and Warehouse Management",
  5. 'icon': '/l10n_in/static/description/icon.png',
  6. 'summary': """
  7. Define default sales journal on the warehouse""",
  8. 'description': """
  9. Define default sales journal on the warehouse,
  10. help you to choose correct sales journal on the sales order when
  11. you change the warehouse.
  12. useful when you setup the multiple GSTIN units.
  13. """,
  14. 'author': "Odoo",
  15. 'website': "https://www.odoo.com",
  16. 'category': 'Accounting/Localizations/Sale',
  17. 'version': '0.1',
  18. 'depends': ['l10n_in_sale', 'l10n_in_stock'],
  19. 'data': [
  20. 'views/stock_warehouse_views.xml',
  21. ],
  22. 'auto_install': True,
  23. 'license': 'LGPL-3',
  24. }