Odoo Book -
This feature adds a specific checkbox to the Odoo settings menu, allowing administrators to enable or disable a custom "Student Notification" service.
: Extending the name_search() function to allow finding records by fields other than name, such as a mobile number. 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
cybrosys.com/odoo/videos/technical/create-kanban-view-in-odoo-17">Kanban view or Chatter integration ? Inheriting Odoo’s Features | Odoo 18 Studio Book cybrosys
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.
Add the field to the user interface by inheriting the settings form view in an XML file.