Nicht mehr aktiver Blog von Dieter Rauscher [MVP 2002-2018] rund um Enterprise Mobility, Azure, Office 365, Microsoft Infrastruktur und alles was dazugehörte…
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
: Extending the name_search() function to allow finding records by fields other than name, such as a mobile number.
In Odoo, "Odoo Book" refers to a comprehensive learning resource, such as the Odoo 18 Development Book by Cybrosys Technologies. To "develop a feature" in this context typically means implementing a custom functionality within an Odoo module using the framework's core building blocks like Python for business logic and XML for views . Odoo Book
In your main student record model, use the config_parameter to check if the feature is enabled before executing the notification logic.
: Adding communication logs and activity scheduling to any custom model. To "develop a feature" in this context typically
Create a new Python file to inherit the res.config.settings model. This model is transient and requires special functions to save and retrieve data.
cybrosys.com/odoo/videos/technical/create-kanban-view-in-odoo-17">Kanban view or Chatter integration ? Inheriting Odoo’s Features | Odoo 18 Studio Book Create a new Python file to inherit the res
res.config.settings.view.form.inherit.edu res.config.settings Use code with caution. Copied to clipboard