__manifest__.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {
  2. 'name': "档案",
  3. 'summary': """
  4. 全部档案模块""",
  5. 'description': """
  6. 全部档案模块,所有模块依赖这个模块
  7. """,
  8. 'author': "ZCDM 开发",
  9. 'website': "http://www.zcdmdata.com",
  10. 'sequence': 1,
  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': ['base_setup',
  20. # 'report',
  21. 'web',
  22. # 'decimal_precision',
  23. ],
  24. # always loaded
  25. 'data': [
  26. 'security/security.xml',
  27. 'security/ir.model.access.csv',
  28. 'views/js_import.xml',
  29. 'data/archive_name.xml',
  30. 'data/work_logic_type.xml',
  31. 'data/sale_order_analyse.xml',
  32. 'views/views.xml',
  33. 'views/analyse_resource.xml',
  34. 'views/approve/approve.xml',
  35. 'views/approve/approve_group.xml',
  36. 'views/approve/process.xml',
  37. 'views/base/log.xml',
  38. 'views/base/origanization.xml',
  39. 'views/base/res_users.xml',
  40. 'views/base/ir_model.xml',
  41. 'views/base/res_group.xml',
  42. 'views/base/report_paterformat_actions.xml',
  43. 'views/base/ir_ui_view_actions.xml',
  44. 'views/base/setting_center.xml',
  45. 'views/base/close_bill_setting.xml',
  46. 'views/base/work_logic_setting.xml',
  47. 'views/base/button_show_config.xml',
  48. 'views/base/search_view_setting.xml',
  49. 'views/base/basic_setting_button.xml',
  50. 'views/common/common_archive.xml',
  51. 'views/common/department.xml',
  52. 'views/common/staff.xml',
  53. 'views/common/goods.xml',
  54. # 'views/common/unit.xml',
  55. 'views/storage/store.xml',
  56. 'views/storage/goods_place.xml',
  57. 'views/storage/goods_batch.xml',
  58. 'views/storage/storage_limit.xml',
  59. 'views/storage/storage_age_limit.xml',
  60. 'views/storage/carrier.xml',
  61. 'views/sale/customer.xml',
  62. 'views/sale/subordinate_customer.xml',
  63. 'views/sale/customer_zone.xml',
  64. 'views/sale/customer_zone1.xml',
  65. 'views/sale/customer_zone2.xml',
  66. 'views/sale/customer_zone3.xml',
  67. 'views/sale/class_price.xml',
  68. 'views/sale/promotion_price.xml',
  69. 'views/sale/presentation_way.xml',
  70. 'views/purchase/provider.xml',
  71. 'views/purchase/provider_zone.xml',
  72. 'views/purchase/provider_zone1.xml',
  73. 'views/purchase/provider_zone2.xml',
  74. 'views/purchase/provider_zone3.xml',
  75. 'views/finance/bank.xml',
  76. 'views/finance/contact_unit.xml',
  77. 'views/finance/sale_account_book.xml',
  78. 'views/finance/purchase_account_book.xml',
  79. 'views/finance/account_book.xml',
  80. 'views/finance/cost_bill.xml',
  81. 'views/finance/bank_account.xml',
  82. 'views/device/common_archive.xml',
  83. 'views/device/equipment_type.xml',
  84. 'views/device/equipment.xml',
  85. 'views/device/fault.xml',
  86. 'views/device/fault_reason.xml',
  87. # 'views/device/repair_method.xml',
  88. 'views/device/repair_project.xml',
  89. 'views/device/maintain_project.xml',
  90. 'views/device/equipment_knowledge.xml',
  91. 'views/device/equipment_group.xml',
  92. 'views/device/maintain_project_group.xml',
  93. 'views/device/spot_check_project.xml',
  94. 'views/device/spot_check_project_group.xml',
  95. # 'views/cooperation/plan_process.xml',
  96. # 'views/cooperation/project_schedule_process.xml',
  97. # 'views/cooperation/task_process.xml',
  98. 'views/cooperation/project_type.xml',
  99. 'views/cooperation/common_archive.xml',
  100. #分析设置
  101. 'views/analyse_setting.xml',
  102. # 授权
  103. 'models/base/grant_authorization/grant_authorization.xml',
  104. # 通用权限
  105. 'models/base/common_promise/common_promise.xml',
  106. 'prints/print_frame.xml',
  107. 'wizard/set_customer_setting/set_customer_setting.xml',
  108. 'wizard/set_auxiliary_name/set_auxiliary_name.xml',
  109. 'security/groups_menu.xml', # 放在最后面
  110. ],
  111. 'qweb': [
  112. 'static/src/xml/customer_setting_button.xml',
  113. 'static/src/xml/analyse_template.xml',
  114. 'static/src/xml/widgets_template.xml',
  115. 'static/src/xml/approver.xml',
  116. ],
  117. # only loaded in demonstration mode
  118. 'demo': [
  119. # 'demo/demo.xml',
  120. ],
  121. }