Odoo Book -

from odoo import models, fields class ResConfigSettings(models.TransientModel): _inherit = 'res.config.settings' enable_student_notifications = fields.Boolean( string="Enable Student Creation Emails", config_parameter='education_organization.enable_student_notifications' ) Use code with caution. Copied to clipboard

: Adding communication logs and activity scheduling to any custom model. Odoo Book

res.config.settings.view.form.inherit.edu res.config.settings Use code with caution. Copied to clipboard from odoo import models

: Creating card-based displays for models like "Company Employees" to improve visual management. Odoo Book

In your main student record model, use the config_parameter to check if the feature is enabled before executing the notification logic.

This feature adds a specific checkbox to the Odoo settings menu, allowing administrators to enable or disable a custom "Student Notification" service.