__manifest__.py 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Manufacturing',
  5. 'version': '2.0',
  6. 'website': 'https://www.odoo.com/app/manufacturing',
  7. 'category': 'Manufacturing/Manufacturing',
  8. 'sequence': 55,
  9. 'summary': 'Manufacturing Orders & BOMs',
  10. 'depends': ['product', 'stock', 'resource'],
  11. 'data': [
  12. 'security/mrp_security.xml',
  13. 'security/ir.model.access.csv',
  14. 'data/digest_data.xml',
  15. 'data/mail_templates.xml',
  16. 'data/mrp_data.xml',
  17. 'wizard/change_production_qty_views.xml',
  18. 'wizard/mrp_workcenter_block_view.xml',
  19. 'wizard/stock_warn_insufficient_qty_views.xml',
  20. 'wizard/mrp_production_backorder.xml',
  21. 'wizard/mrp_consumption_warning_views.xml',
  22. 'wizard/mrp_immediate_production_views.xml',
  23. 'wizard/stock_assign_serial_numbers.xml',
  24. 'wizard/mrp_production_split.xml',
  25. 'views/mrp_views_menus.xml',
  26. 'views/stock_move_views.xml',
  27. 'views/mrp_workorder_views.xml',
  28. 'views/mrp_workcenter_views.xml',
  29. 'views/mrp_bom_views.xml',
  30. 'views/mrp_production_views.xml',
  31. 'views/mrp_routing_views.xml',
  32. 'views/product_views.xml',
  33. 'views/stock_orderpoint_views.xml',
  34. 'views/stock_warehouse_views.xml',
  35. 'views/stock_picking_views.xml',
  36. 'views/mrp_unbuild_views.xml',
  37. 'views/ir_attachment_view.xml',
  38. 'views/res_config_settings_views.xml',
  39. 'views/stock_scrap_views.xml',
  40. 'report/report_deliveryslip.xml',
  41. 'report/mrp_report_views_main.xml',
  42. 'report/mrp_report_bom_structure.xml',
  43. 'report/mrp_production_templates.xml',
  44. 'report/report_stock_forecasted.xml',
  45. 'report/report_stock_reception.xml',
  46. 'report/report_stock_rule.xml',
  47. 'report/mrp_zebra_production_templates.xml',
  48. 'report/mrp_workorder_templates.xml',
  49. ],
  50. 'demo': [
  51. 'data/mrp_demo.xml',
  52. ],
  53. 'application': True,
  54. 'pre_init_hook': '_pre_init_mrp',
  55. 'post_init_hook': '_create_warehouse_data',
  56. 'uninstall_hook': 'uninstall_hook',
  57. 'assets': {
  58. 'web.assets_backend': [
  59. 'mrp/static/src/**/*',
  60. ],
  61. 'web.assets_tests': [
  62. 'mrp/static/tests/tours/**/*',
  63. ],
  64. 'web.qunit_suite_tests': [
  65. 'mrp/static/tests/**/*',
  66. ],
  67. },
  68. 'license': 'LGPL-3',
  69. }