__manifest__.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. 'name': "设备",
  3. 'summary': """
  4. 设备相关""",
  5. 'description': """
  6. 仓库、销售以及采购相关的流程管控
  7. """,
  8. 'author': "ZCDM 开发",
  9. 'website': "http://www.zcdmdata.com",
  10. 'sequence': 3,
  11. # Categories can be used to filter modules in modules listing
  12. # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
  13. # for the full list
  14. 'category': 'jc',
  15. 'version': '0.3',
  16. 'installable': True,
  17. 'application': True,
  18. # any module necessary for this one to work correctly
  19. 'depends': [
  20. 'archives',
  21. 'base_setup',
  22. # 'report',
  23. 'web',
  24. 'jc_supply_chain',
  25. # 'decimal_precision',
  26. ],
  27. # always loaded
  28. 'data': [
  29. 'security/security.xml',
  30. 'security/ir.model.access.csv',
  31. 'views/views.xml',
  32. 'views/operation_record.xml',
  33. 'views/repair_application.xml',
  34. 'views/repair_record.xml',
  35. 'views/maintain_record.xml',
  36. 'views/fault_record.xml',
  37. 'views/fault_handle_record.xml',
  38. 'views/spot_check_record.xml',
  39. 'views//maintain_plan.xml',
  40. # 保养计划
  41. 'models/maintain_plan/maintain_plan_wizard.xml',
  42. 'models/maintain_plan/maintain_plan_print.xml',
  43. # 保养记录
  44. 'models/maintain_record/maintain_record_print.xml',
  45. 'models/maintain_record/maintain_record_wizard.xml',
  46. 'security/groups_menu.xml', # 放在最后面
  47. ],
  48. 'qweb': [],
  49. # only loaded in demonstration mode
  50. 'demo': [
  51. # 'demo/demo.xml',
  52. ],
  53. }