際際滷

際際滷Share a Scribd company logo
How to Add Custom Fields
to Configuration Settings
in Odoo 18
Enterprise
Enterprise
Introduction
In Odoo, adding custom fields to Configuration Settings actually means
adding fields to the res.config.settings model. This model is designed for
system configuration, allowing users to define global settings for various
modules, such as the Sale, Purchase.
Adding custom fields in res.config.settings can make the system highly
customizable and improve user experience by adapting Odoo to specific
business needs.
Lets see how a new field is added using the Odoo 18 code
Enterprise
The ResConfigSettings model in Odoo is transient, meaning that its data
is regularly cleaned up. The fields in res.config.settings are often linked to
ir.config_parameter, which stores the configuration values. When we add a
custom field, we need to ensure its value is properly saved in the
configuration parameters so that it persists across sessions. We use the
attribute config_parameter while defining the field as
config_parameter=module_name.field_name
Enterprise
Adding fields to the ResConfigSettings model:
Suppose our module name is sales_custom, lets create a new field for setting a
minimum sale amount for the Sales in Odoo 18. For that, first, we need to
inherit the res.config.settings model and we define two fields here as
from odoo import api, fields, models
class ResConfigSettings(models.TransientModel):
"""Inheriting ResConfigSettings to add fields and functions"""
_inherit = 'res.config.settings'
set_order_minimum_amount = fields.Boolean(string='Set Minimum Sale Amount',
config_parameter=sales_custom.set_order_minimum_amount')
order_minimum_amount = fields.Float(
string='Minimum Sale Amount',
config_parameter=sales_custom.order_minimum_amount')
Enterprise
Note that, we created a transient model using
class ResConfigSettings(models.TransientModel):
And the boolean field set_order_minimum_amount is used to enable the feature
on the configurations settings page and the floating field
order_minimum_amount is shown and hidden based on that boolean fields
value.
The module name is sales_custom so that for those two fields, we used the
config_parameter attribute as
config_parameter=sales_custom.set_order_minimum_amount'
and
config_parameter=sales_custom.order_minimum_amount'
Enterprise
Adding the fields to the view of ResConfigSettings
While adding custom fields to a view, we can inherit the existing view and
specify their position using the <xpath> tag. To add custom fields to the
Sale modules settings, we should inherit the view
sale.res_config_settings_view_form and indicate where you want these
fields to appear.
We can add these custom fields under the Pricing tab of Sale modules
setting almost near here
Enterprise
The code for adding the view inheritance is as
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="res_config_settings_view_form" model="ir.ui.view">
<field name="name"> res.config.settings.view.form.inherit.sales.custom </field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="sale.res_config_settings_view_form"/>
<field name="arch" type="xml">
<xpath expr="//setting[@id=discount_sale_order_lines]" position="after">
<setting id="sale_order_minimum_amount" documentation="
https://www.odoo.com/documentation/18.0"
title="User can set the minimum amount for the sale orders."
help="For the minimum sale amount for all the orders">
<field name="set_order_minimum_amount"/>
<div class="content-group" invisible="not set_order_minimum_amount">
<div class="mt16">
<label for="order_minimum_amount"/>
<field name="order_minimum_amount"/>
</div> </div> </setting>
</xpath> </field>
</record>
</odoo>
Enterprise
This makes the new boolean field to be visible on the settings page as
Enterprise
Upon enabling that, it makes the float field to give the amount to be visible
on the settings page as
With these kind of setup and configurations, we can make use of these settings field in
any other Odoo modules and control the workflow as we need
For More Info.
Check our company website for related blogs
and Odoo book.
Check our YouTube channel for
functional and technical videos in Odoo.
Enterprise
www.cybrosys.com

More Related Content

Similar to How to Add Custom Fields to Configuration Settings in Odoo 18 (20)

How to extend Order, Orderlines , PoS store and model definition in odoo 17 POS
How to extend Order, Orderlines , PoS store and model definition in odoo 17 POSHow to extend Order, Orderlines , PoS store and model definition in odoo 17 POS
How to extend Order, Orderlines , PoS store and model definition in odoo 17 POS
Celine George
How to Add Inverse Function for Compute Fields in Odoo 18
How to Add Inverse Function for Compute Fields in Odoo 18How to Add Inverse Function for Compute Fields in Odoo 18
How to Add Inverse Function for Compute Fields in Odoo 18
Celine George
How to hide the buttons on the POS screen in Odoo 17
How to hide the buttons on the POS screen in Odoo 17How to hide the buttons on the POS screen in Odoo 17
How to hide the buttons on the POS screen in Odoo 17
Celine George
How To Extend Odoo Form View using js_class_
How To Extend Odoo Form View using js_class_How To Extend Odoo Form View using js_class_
How To Extend Odoo Form View using js_class_
Celine George
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
Celine George
WebClient Customization.pdf
WebClient Customization.pdfWebClient Customization.pdf
WebClient Customization.pdf
satyasekhar123
Magento's Imagine eCommerce Conference 2011 - Import Export in a Flash with t...
Magento's Imagine eCommerce Conference 2011 - Import Export in a Flash with t...Magento's Imagine eCommerce Conference 2011 - Import Export in a Flash with t...
Magento's Imagine eCommerce Conference 2011 - Import Export in a Flash with t...
MagentoImagine
Magento Imagine eCommerce Conference 2011: Using Magento's Import Module
Magento Imagine eCommerce Conference 2011: Using Magento's Import ModuleMagento Imagine eCommerce Conference 2011: Using Magento's Import Module
Magento Imagine eCommerce Conference 2011: Using Magento's Import Module
varien
How to make a field widget in odoo 17 - Odoo 際際滷s
How to make a field widget in odoo 17 - Odoo 際際滷sHow to make a field widget in odoo 17 - Odoo 際際滷s
How to make a field widget in odoo 17 - Odoo 際際滷s
Celine George
How to Modify Existing Web Pages in Odoo 18
How to Modify Existing Web Pages in Odoo 18How to Modify Existing Web Pages in Odoo 18
How to Modify Existing Web Pages in Odoo 18
Celine George
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
Sencha
Sales force certification-lab
Sales force certification-labSales force certification-lab
Sales force certification-lab
Amit Sharma
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
Celine George
What is Monkey Patching & How It Can Be Applied in Odoo 17
What is Monkey Patching & How It Can Be Applied in Odoo 17What is Monkey Patching & How It Can Be Applied in Odoo 17
What is Monkey Patching & How It Can Be Applied in Odoo 17
Celine George
How to Create & Manage a Dashboard Using OWL in Odoo 17
How to Create & Manage a Dashboard Using OWL in Odoo 17How to Create & Manage a Dashboard Using OWL in Odoo 17
How to Create & Manage a Dashboard Using OWL in Odoo 17
Celine George
How to add Many2Many fields in odoo website form.pptx
How to add Many2Many fields in odoo website form.pptxHow to add Many2Many fields in odoo website form.pptx
How to add Many2Many fields in odoo website form.pptx
Celine George
Central Finance Configuration.pdf
Central Finance Configuration.pdfCentral Finance Configuration.pdf
Central Finance Configuration.pdf
chandramohan431817
How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17
Celine George
How to Super Create Write Functions in Odoo 17
How to Super Create Write Functions in Odoo 17How to Super Create Write Functions in Odoo 17
How to Super Create Write Functions in Odoo 17
Celine George
Aggregate feature in list view odoo 17.pptx
Aggregate feature in list view odoo 17.pptxAggregate feature in list view odoo 17.pptx
Aggregate feature in list view odoo 17.pptx
Celine George
How to extend Order, Orderlines , PoS store and model definition in odoo 17 POS
How to extend Order, Orderlines , PoS store and model definition in odoo 17 POSHow to extend Order, Orderlines , PoS store and model definition in odoo 17 POS
How to extend Order, Orderlines , PoS store and model definition in odoo 17 POS
Celine George
How to Add Inverse Function for Compute Fields in Odoo 18
How to Add Inverse Function for Compute Fields in Odoo 18How to Add Inverse Function for Compute Fields in Odoo 18
How to Add Inverse Function for Compute Fields in Odoo 18
Celine George
How to hide the buttons on the POS screen in Odoo 17
How to hide the buttons on the POS screen in Odoo 17How to hide the buttons on the POS screen in Odoo 17
How to hide the buttons on the POS screen in Odoo 17
Celine George
How To Extend Odoo Form View using js_class_
How To Extend Odoo Form View using js_class_How To Extend Odoo Form View using js_class_
How To Extend Odoo Form View using js_class_
Celine George
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
Celine George
WebClient Customization.pdf
WebClient Customization.pdfWebClient Customization.pdf
WebClient Customization.pdf
satyasekhar123
Magento's Imagine eCommerce Conference 2011 - Import Export in a Flash with t...
Magento's Imagine eCommerce Conference 2011 - Import Export in a Flash with t...Magento's Imagine eCommerce Conference 2011 - Import Export in a Flash with t...
Magento's Imagine eCommerce Conference 2011 - Import Export in a Flash with t...
MagentoImagine
Magento Imagine eCommerce Conference 2011: Using Magento's Import Module
Magento Imagine eCommerce Conference 2011: Using Magento's Import ModuleMagento Imagine eCommerce Conference 2011: Using Magento's Import Module
Magento Imagine eCommerce Conference 2011: Using Magento's Import Module
varien
How to make a field widget in odoo 17 - Odoo 際際滷s
How to make a field widget in odoo 17 - Odoo 際際滷sHow to make a field widget in odoo 17 - Odoo 際際滷s
How to make a field widget in odoo 17 - Odoo 際際滷s
Celine George
How to Modify Existing Web Pages in Odoo 18
How to Modify Existing Web Pages in Odoo 18How to Modify Existing Web Pages in Odoo 18
How to Modify Existing Web Pages in Odoo 18
Celine George
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
SenchaCon 2016: Handle Real-World Data with Confidence - Fredric Berling
Sencha
Sales force certification-lab
Sales force certification-labSales force certification-lab
Sales force certification-lab
Amit Sharma
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
Celine George
What is Monkey Patching & How It Can Be Applied in Odoo 17
What is Monkey Patching & How It Can Be Applied in Odoo 17What is Monkey Patching & How It Can Be Applied in Odoo 17
What is Monkey Patching & How It Can Be Applied in Odoo 17
Celine George
How to Create & Manage a Dashboard Using OWL in Odoo 17
How to Create & Manage a Dashboard Using OWL in Odoo 17How to Create & Manage a Dashboard Using OWL in Odoo 17
How to Create & Manage a Dashboard Using OWL in Odoo 17
Celine George
How to add Many2Many fields in odoo website form.pptx
How to add Many2Many fields in odoo website form.pptxHow to add Many2Many fields in odoo website form.pptx
How to add Many2Many fields in odoo website form.pptx
Celine George
Central Finance Configuration.pdf
Central Finance Configuration.pdfCentral Finance Configuration.pdf
Central Finance Configuration.pdf
chandramohan431817
How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17
Celine George
How to Super Create Write Functions in Odoo 17
How to Super Create Write Functions in Odoo 17How to Super Create Write Functions in Odoo 17
How to Super Create Write Functions in Odoo 17
Celine George
Aggregate feature in list view odoo 17.pptx
Aggregate feature in list view odoo 17.pptxAggregate feature in list view odoo 17.pptx
Aggregate feature in list view odoo 17.pptx
Celine George

More from Celine George (20)

Analysis of Conf File Parameters in Odoo 17
Analysis of Conf File Parameters in Odoo 17Analysis of Conf File Parameters in Odoo 17
Analysis of Conf File Parameters in Odoo 17
Celine George
How to Manage Check Out Process in Odoo 17 Website
How to Manage Check Out Process in Odoo 17 WebsiteHow to Manage Check Out Process in Odoo 17 Website
How to Manage Check Out Process in Odoo 17 Website
Celine George
Managing Online Signature and Payment with Odoo 17
Managing Online Signature and Payment with Odoo 17Managing Online Signature and Payment with Odoo 17
Managing Online Signature and Payment with Odoo 17
Celine George
Recruitment in the Odoo 17 - Odoo 17 際際滷s
Recruitment in the Odoo 17 - Odoo 17 際際滷sRecruitment in the Odoo 17 - Odoo 17 際際滷s
Recruitment in the Odoo 17 - Odoo 17 際際滷s
Celine George
How to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting AppHow to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting App
Celine George
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷sHow to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
Celine George
How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18
Celine George
How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18
Celine George
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesHow to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
Celine George
URLS and routing in odoo 18 - Odoo 際際滷s
URLS and routing in odoo 18 - Odoo 際際滷sURLS and routing in odoo 18 - Odoo 際際滷s
URLS and routing in odoo 18 - Odoo 際際滷s
Celine George
Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17
Celine George
List View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷sList View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷s
Celine George
How to Set Default Terms and Conditions in Odoo 17 Accounting
How to Set Default Terms and Conditions in Odoo 17 AccountingHow to Set Default Terms and Conditions in Odoo 17 Accounting
How to Set Default Terms and Conditions in Odoo 17 Accounting
Celine George
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo SalesEnhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Celine George
What are the Views in Odoo 18 Purchase - Odoo 際際滷s
What are the Views in Odoo 18 Purchase - Odoo 際際滷sWhat are the Views in Odoo 18 Purchase - Odoo 際際滷s
What are the Views in Odoo 18 Purchase - Odoo 際際滷s
Celine George
Configuration of Python and SQL Constraints in Odoo 18
Configuration of Python and SQL Constraints in Odoo 18Configuration of Python and SQL Constraints in Odoo 18
Configuration of Python and SQL Constraints in Odoo 18
Celine George
How to Manage Abandoned Cart in Odoo 17 Website
How to Manage Abandoned Cart in Odoo 17 WebsiteHow to Manage Abandoned Cart in Odoo 17 Website
How to Manage Abandoned Cart in Odoo 17 Website
Celine George
How to Add opening Balance in Odoo Accounting
How to Add opening Balance in Odoo AccountingHow to Add opening Balance in Odoo Accounting
How to Add opening Balance in Odoo Accounting
Celine George
How to Manage Your Company Budget Using Odoo 17 Accounting
How to Manage Your Company Budget Using Odoo 17 AccountingHow to Manage Your Company Budget Using Odoo 17 Accounting
How to Manage Your Company Budget Using Odoo 17 Accounting
Celine George
How to Simplify Reconciliation Process using Reconciliation Models using odoo...
How to Simplify Reconciliation Process using Reconciliation Models using odoo...How to Simplify Reconciliation Process using Reconciliation Models using odoo...
How to Simplify Reconciliation Process using Reconciliation Models using odoo...
Celine George
Analysis of Conf File Parameters in Odoo 17
Analysis of Conf File Parameters in Odoo 17Analysis of Conf File Parameters in Odoo 17
Analysis of Conf File Parameters in Odoo 17
Celine George
How to Manage Check Out Process in Odoo 17 Website
How to Manage Check Out Process in Odoo 17 WebsiteHow to Manage Check Out Process in Odoo 17 Website
How to Manage Check Out Process in Odoo 17 Website
Celine George
Managing Online Signature and Payment with Odoo 17
Managing Online Signature and Payment with Odoo 17Managing Online Signature and Payment with Odoo 17
Managing Online Signature and Payment with Odoo 17
Celine George
Recruitment in the Odoo 17 - Odoo 17 際際滷s
Recruitment in the Odoo 17 - Odoo 17 際際滷sRecruitment in the Odoo 17 - Odoo 17 際際滷s
Recruitment in the Odoo 17 - Odoo 17 際際滷s
Celine George
How to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting AppHow to Setup Company Data in Odoo 17 Accounting App
How to Setup Company Data in Odoo 17 Accounting App
Celine George
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷sHow to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
Celine George
How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18
Celine George
How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18How to Configure Outgoing and Incoming mail servers in Odoo 18
How to Configure Outgoing and Incoming mail servers in Odoo 18
Celine George
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesHow to Grant Discounts in Sale Order Lines in Odoo 18 Sales
How to Grant Discounts in Sale Order Lines in Odoo 18 Sales
Celine George
URLS and routing in odoo 18 - Odoo 際際滷s
URLS and routing in odoo 18 - Odoo 際際滷sURLS and routing in odoo 18 - Odoo 際際滷s
URLS and routing in odoo 18 - Odoo 際際滷s
Celine George
Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17Comparing RFQ Lines for the best price in Odoo 17
Comparing RFQ Lines for the best price in Odoo 17
Celine George
List View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷sList View Attributes in Odoo 18 - Odoo 際際滷s
List View Attributes in Odoo 18 - Odoo 際際滷s
Celine George
How to Set Default Terms and Conditions in Odoo 17 Accounting
How to Set Default Terms and Conditions in Odoo 17 AccountingHow to Set Default Terms and Conditions in Odoo 17 Accounting
How to Set Default Terms and Conditions in Odoo 17 Accounting
Celine George
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo SalesEnhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Enhance Your Quotations by Sections, Notes, and Subtotals in Odoo Sales
Celine George
What are the Views in Odoo 18 Purchase - Odoo 際際滷s
What are the Views in Odoo 18 Purchase - Odoo 際際滷sWhat are the Views in Odoo 18 Purchase - Odoo 際際滷s
What are the Views in Odoo 18 Purchase - Odoo 際際滷s
Celine George
Configuration of Python and SQL Constraints in Odoo 18
Configuration of Python and SQL Constraints in Odoo 18Configuration of Python and SQL Constraints in Odoo 18
Configuration of Python and SQL Constraints in Odoo 18
Celine George
How to Manage Abandoned Cart in Odoo 17 Website
How to Manage Abandoned Cart in Odoo 17 WebsiteHow to Manage Abandoned Cart in Odoo 17 Website
How to Manage Abandoned Cart in Odoo 17 Website
Celine George
How to Add opening Balance in Odoo Accounting
How to Add opening Balance in Odoo AccountingHow to Add opening Balance in Odoo Accounting
How to Add opening Balance in Odoo Accounting
Celine George
How to Manage Your Company Budget Using Odoo 17 Accounting
How to Manage Your Company Budget Using Odoo 17 AccountingHow to Manage Your Company Budget Using Odoo 17 Accounting
How to Manage Your Company Budget Using Odoo 17 Accounting
Celine George
How to Simplify Reconciliation Process using Reconciliation Models using odoo...
How to Simplify Reconciliation Process using Reconciliation Models using odoo...How to Simplify Reconciliation Process using Reconciliation Models using odoo...
How to Simplify Reconciliation Process using Reconciliation Models using odoo...
Celine George

Recently uploaded (20)

Knownsense 2025 prelims- U-25 General Quiz.pdf
Knownsense 2025 prelims- U-25 General Quiz.pdfKnownsense 2025 prelims- U-25 General Quiz.pdf
Knownsense 2025 prelims- U-25 General Quiz.pdf
Pragya - UEM Kolkata Quiz Club
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdfWeek 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Liz Walsh-Trevino
Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
 Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ... Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
coreylewis960
MIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel HolznerMIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel Holzner
MIPLM
Introduction to Systematic Reviews - Prof Ejaz Khan
Introduction to Systematic Reviews - Prof Ejaz KhanIntroduction to Systematic Reviews - Prof Ejaz Khan
Introduction to Systematic Reviews - Prof Ejaz Khan
Systematic Reviews Network (SRN)
compiler design BCS613C question bank 2022 scheme
compiler design BCS613C question bank 2022 schemecompiler design BCS613C question bank 2022 scheme
compiler design BCS613C question bank 2022 scheme
Suvarna Hiremath
NURSING PROCESS AND ITS STEPS .pptx
NURSING PROCESS AND ITS STEPS                 .pptxNURSING PROCESS AND ITS STEPS                 .pptx
NURSING PROCESS AND ITS STEPS .pptx
PoojaSen20
Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...
Yannis
Anti-Fungal Agents.pptx Medicinal Chemistry III B. Pharm Sem VI
Anti-Fungal Agents.pptx Medicinal Chemistry III B. Pharm Sem VIAnti-Fungal Agents.pptx Medicinal Chemistry III B. Pharm Sem VI
Anti-Fungal Agents.pptx Medicinal Chemistry III B. Pharm Sem VI
Samruddhi Khonde
CLEFT LIP AND PALATE: NURSING MANAGEMENT.pptx
CLEFT LIP AND PALATE: NURSING MANAGEMENT.pptxCLEFT LIP AND PALATE: NURSING MANAGEMENT.pptx
CLEFT LIP AND PALATE: NURSING MANAGEMENT.pptx
PRADEEP ABOTHU
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
EduSkills OECD
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdf
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdfBerry_Kanisha_BAS_PB1_202503 (2) (2).pdf
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdf
KanishaBerry
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdfEDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
Liz Walsh-Trevino
Early 20th Century Modern Art: Movements and Artists
Early 20th Century Modern Art: Movements and ArtistsEarly 20th Century Modern Art: Movements and Artists
Early 20th Century Modern Art: Movements and Artists
Damian T. Gordon
Studying and Notetaking: Some Suggestions
Studying and Notetaking: Some SuggestionsStudying and Notetaking: Some Suggestions
Studying and Notetaking: Some Suggestions
Damian T. Gordon
MIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan KayaMIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan Kaya
MIPLM
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptxUrinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Ashish Umale
UTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri DabhadeUTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdfWeek 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Liz Walsh-Trevino
Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
 Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ... Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
Marketing is Everything in the Beauty Business! 憓 Talent gets you in the ...
coreylewis960
MIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel HolznerMIPLM subject matter expert Daniel Holzner
MIPLM subject matter expert Daniel Holzner
MIPLM
compiler design BCS613C question bank 2022 scheme
compiler design BCS613C question bank 2022 schemecompiler design BCS613C question bank 2022 scheme
compiler design BCS613C question bank 2022 scheme
Suvarna Hiremath
NURSING PROCESS AND ITS STEPS .pptx
NURSING PROCESS AND ITS STEPS                 .pptxNURSING PROCESS AND ITS STEPS                 .pptx
NURSING PROCESS AND ITS STEPS .pptx
PoojaSen20
Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...
Yannis
Anti-Fungal Agents.pptx Medicinal Chemistry III B. Pharm Sem VI
Anti-Fungal Agents.pptx Medicinal Chemistry III B. Pharm Sem VIAnti-Fungal Agents.pptx Medicinal Chemistry III B. Pharm Sem VI
Anti-Fungal Agents.pptx Medicinal Chemistry III B. Pharm Sem VI
Samruddhi Khonde
CLEFT LIP AND PALATE: NURSING MANAGEMENT.pptx
CLEFT LIP AND PALATE: NURSING MANAGEMENT.pptxCLEFT LIP AND PALATE: NURSING MANAGEMENT.pptx
CLEFT LIP AND PALATE: NURSING MANAGEMENT.pptx
PRADEEP ABOTHU
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
EduSkills OECD
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdf
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdfBerry_Kanisha_BAS_PB1_202503 (2) (2).pdf
Berry_Kanisha_BAS_PB1_202503 (2) (2).pdf
KanishaBerry
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdfEDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
Liz Walsh-Trevino
Early 20th Century Modern Art: Movements and Artists
Early 20th Century Modern Art: Movements and ArtistsEarly 20th Century Modern Art: Movements and Artists
Early 20th Century Modern Art: Movements and Artists
Damian T. Gordon
Studying and Notetaking: Some Suggestions
Studying and Notetaking: Some SuggestionsStudying and Notetaking: Some Suggestions
Studying and Notetaking: Some Suggestions
Damian T. Gordon
MIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan KayaMIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan Kaya
MIPLM
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptxUrinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Ashish Umale
UTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri DabhadeUTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri Dabhade
Dabhade madam Dabhade

How to Add Custom Fields to Configuration Settings in Odoo 18

  • 1. How to Add Custom Fields to Configuration Settings in Odoo 18 Enterprise
  • 2. Enterprise Introduction In Odoo, adding custom fields to Configuration Settings actually means adding fields to the res.config.settings model. This model is designed for system configuration, allowing users to define global settings for various modules, such as the Sale, Purchase. Adding custom fields in res.config.settings can make the system highly customizable and improve user experience by adapting Odoo to specific business needs. Lets see how a new field is added using the Odoo 18 code
  • 3. Enterprise The ResConfigSettings model in Odoo is transient, meaning that its data is regularly cleaned up. The fields in res.config.settings are often linked to ir.config_parameter, which stores the configuration values. When we add a custom field, we need to ensure its value is properly saved in the configuration parameters so that it persists across sessions. We use the attribute config_parameter while defining the field as config_parameter=module_name.field_name
  • 4. Enterprise Adding fields to the ResConfigSettings model: Suppose our module name is sales_custom, lets create a new field for setting a minimum sale amount for the Sales in Odoo 18. For that, first, we need to inherit the res.config.settings model and we define two fields here as from odoo import api, fields, models class ResConfigSettings(models.TransientModel): """Inheriting ResConfigSettings to add fields and functions""" _inherit = 'res.config.settings' set_order_minimum_amount = fields.Boolean(string='Set Minimum Sale Amount', config_parameter=sales_custom.set_order_minimum_amount') order_minimum_amount = fields.Float( string='Minimum Sale Amount', config_parameter=sales_custom.order_minimum_amount')
  • 5. Enterprise Note that, we created a transient model using class ResConfigSettings(models.TransientModel): And the boolean field set_order_minimum_amount is used to enable the feature on the configurations settings page and the floating field order_minimum_amount is shown and hidden based on that boolean fields value. The module name is sales_custom so that for those two fields, we used the config_parameter attribute as config_parameter=sales_custom.set_order_minimum_amount' and config_parameter=sales_custom.order_minimum_amount'
  • 6. Enterprise Adding the fields to the view of ResConfigSettings While adding custom fields to a view, we can inherit the existing view and specify their position using the <xpath> tag. To add custom fields to the Sale modules settings, we should inherit the view sale.res_config_settings_view_form and indicate where you want these fields to appear. We can add these custom fields under the Pricing tab of Sale modules setting almost near here
  • 7. Enterprise The code for adding the view inheritance is as <?xml version="1.0" encoding="UTF-8" ?> <odoo> <record id="res_config_settings_view_form" model="ir.ui.view"> <field name="name"> res.config.settings.view.form.inherit.sales.custom </field> <field name="model">res.config.settings</field> <field name="inherit_id" ref="sale.res_config_settings_view_form"/> <field name="arch" type="xml"> <xpath expr="//setting[@id=discount_sale_order_lines]" position="after"> <setting id="sale_order_minimum_amount" documentation=" https://www.odoo.com/documentation/18.0" title="User can set the minimum amount for the sale orders." help="For the minimum sale amount for all the orders"> <field name="set_order_minimum_amount"/> <div class="content-group" invisible="not set_order_minimum_amount"> <div class="mt16"> <label for="order_minimum_amount"/> <field name="order_minimum_amount"/> </div> </div> </setting> </xpath> </field> </record> </odoo>
  • 8. Enterprise This makes the new boolean field to be visible on the settings page as
  • 9. Enterprise Upon enabling that, it makes the float field to give the amount to be visible on the settings page as With these kind of setup and configurations, we can make use of these settings field in any other Odoo modules and control the workflow as we need
  • 10. For More Info. Check our company website for related blogs and Odoo book. Check our YouTube channel for functional and technical videos in Odoo. Enterprise www.cybrosys.com