123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- from odoo import models, fields
- class MgmtSystemConfigSettings(models.TransientModel):
- """This class in needed to activate management system Applications."""
- _name = 'mgmtsystem.config.settings'
- _inherit = 'res.config.settings'
-
- module_mgmtsystem_quality = fields.Boolean(
- 'Quality (ISO 9001)',
- help='Provide quality management tools.\n'
- '-This installs the module mgmtsystem_quality.'
- )
- module_mgmtsystem_environment = fields.Boolean(
- 'Environment (ISO 14001)',
- help='Provide environment management tools.\n'
- '-This installs the module mgmtsystem_environment.'
- )
- module_mgmtsystem_health_safety = fields.Boolean(
- 'Hygiene & Safety (OHSAS 18001)',
- help='Provide health and safety management tools.\n'
- '-This installs the module mgmtsystem_health_safety.'
- )
- module_mgmtsystem_information_security = fields.Boolean(
- 'Information Security (ISO 27001)',
- help='Provide information security tools.\n'
- '-This installs the module mgmtsystem_information_security.'
- )
-
- module_mgmtsystem_action = fields.Boolean(
- """
- Actions (immediate, corrective, preventive) and improvement opportunities
- """,
- help='Provide actions and improvement opportunities tools.\n'
- '-This installs the module mgmtsystem_action.'
- )
- module_mgmtsystem_nonconformity = fields.Boolean(
- 'Nonconformities',
- help='Provide non conformity tools.\n'
- '-This installs the module mgmtsystem_nonconformity.'
- )
- module_mgmtsystem_claim = fields.Boolean(
- 'Claims',
- help='Provide claim tools.\n'
- '-This installs the module mgmtsystem_claim.'
- )
- module_mgmtsystem_audit = fields.Boolean(
- 'Audits',
- help='Provide audit tools.\n'
- '-This installs the module mgmtsystem_audit.'
- )
- module_mgmtsystem_review = fields.Boolean(
- 'Top management reviews',
- help='Provide review tools.\n'
- '-This installs the module mgmtsystem_review.'
- )
-
- module_mgmtsystem_quality_manual = fields.Boolean(
- 'Quality Manual template based on the ISO 9001:2008 standard',
- help='Provide a quality manual template.\n'
- '- This installs the module mgmtsystem_quality_manual.'
- )
- module_mgmtsystem_environment_manual = fields.Boolean(
- 'Environment Manual template based on the ISO 14001:2004 standard',
- help='Provide an environment manual template.\n'
- '- This installs the module mgmtsystem_environment_manual.'
- )
- module_mgmtsystem_health_safety_manual = fields.Boolean(
- 'Health & Safety Manual template based on the OHSAS 18001 standard',
- help='Provide a health and safety manual template.\n'
- '- This installs the module mgmtsystem_health_safety_manual.'
- )
- module_information_security_manual = fields.Boolean(
- 'Information Security Manual template based on ISO 27001',
- help='Provide an information security manual.\n'
- '- This installs the module information_security_manual.'
- )
-
- module_mgmtsystem_procedure = fields.Boolean(
- 'Procedures',
- help='Provide procedures category.\n'
- '- This installs the module mgmtsystem_procedure.'
- )
- module_mgmtsystem_environmental_aspect = fields.Boolean(
- 'Environmental Aspects',
- help='Provide Environmental Aspect category.\n'
- '- This installs the module mgmtsystem_environmental_aspect.'
- )
- module_mgmtsystem_hazard = fields.Boolean(
- 'Hazards',
- help='Provide Hazards.\n'
- '- This installs the module mgmtsystem_hazard.'
- )
- module_mgmtsystem_security_event = fields.Boolean(
- 'Feared Events',
- help='Provide Feared Events.\n'
- '- This installs the module mgmtsystem_security_event.'
- )
|