__manifest__.py 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Accounting - MRP',
  5. 'version': '1.0',
  6. 'category': 'Manufacturing/Manufacturing',
  7. 'summary': 'Analytic accounting in Manufacturing',
  8. 'description': """
  9. Analytic Accounting in MRP
  10. ==========================
  11. * Cost structure report
  12. Also, allows to compute the cost of the product based on its BoM, using the costs of its components and work center operations.
  13. It adds a button on the product itself but also an action in the list view of the products.
  14. If the automated inventory valuation is active, the necessary accounting entries will be created.
  15. """,
  16. 'website': 'https://www.odoo.com/app/manufacturing',
  17. 'depends': ['mrp', 'stock_account'],
  18. "data": [
  19. 'security/ir.model.access.csv',
  20. "views/product_views.xml",
  21. "views/mrp_bom_views.xml",
  22. "views/mrp_production_views.xml",
  23. "views/analytic_account_views.xml",
  24. ],
  25. 'demo': [
  26. 'data/mrp_account_demo.xml',
  27. ],
  28. 'installable': True,
  29. 'auto_install': True,
  30. 'license': 'LGPL-3',
  31. }