Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Create a custom configuration page for custom module

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
settings
3 Réponses
18359 Vues
Avatar
Marco Antonio Cid Barreras

Hi!

How can I create a custom config. page for a module? A section where the user would fill some data, and that data would be retrieved in a module for its use

Thanks

1
Avatar
Ignorer
Hardikgiri Goswami

can you describe this in brief with some example ?

Avatar
Andreas Stange
Meilleure réponse

This changed very much in Odoo 11. To get an idea how to create Configuration pages in Odoo 11, my tip is to look for files named res_config_settings.py and res_config_settings.xml.

Here is a short example of a configuration in Odoo 11:

Example model

class Session(models.Model):
_name = 'openacademy.session'

name = fields.Char(required=True)
seats = fields.Integer(string="Number of seats")

The field 'seats' will get a default value configurable in the configuration that we will create. In odoo 11 all configuration is done in the same model, which we will extend via _inherit.

Configuration model res_config_settings.py

class ResConfigSettings(models.TransientModel):
_inherit = 'res.config.settings'

default_seats = fields.Integer(default_model='openacademy.session')
my_setting = fields.Char(string='My Setting')

def get_values(self):
res = super(ResConfigSettings, self).get_values()
res.update(
my_setting=self.env['ir.config_parameter'].sudo().get_param('openacademy.my_setting')
)
return res

def set_values(self):
super(ResConfigSettings, self).set_values()
self.env['ir.config_parameter'].sudo().set_param('openacademy.my_setting', self.my_setting)
Fields with the prefix 'default_' will be handled automatically by Odoo
to provide default values for fields in some models.
Other configuration values need to be handled manually in get_values and set_values.

Finally there is the view for this model. It is quite a lot code,
to match the same style of the other Odoo config pages.
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="openacademy_settings_view2" model="ir.ui.view">
<field name="name">Openacademy Configuration</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="base.res_config_settings_view_form" />
<field name="arch" type="xml">
<xpath expr="//div[hasclass('settings')]" position="inside">
<div class="app_settings_block" data-string="Open Academy Data-String" string="Open Academy" data-key="openacademy">
<h2>General Settings</h2>
<div class="row mt16 o_settings_container">
<div class="col-xs-12 col-md-6 o_setting_box">
<div class="o_setting_right_pane">
<label for="my_setting"/>
<div class="text-muted">
Description text 1
</div>
<div class="content-group">
<div class="mt16">
<field name="my_setting" class="o_light_label"/>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-md-6 o_setting_box">
<div class="o_setting_right_pane">
<label for="default_seats"/>
<div class="text-muted">
Description text 2
</div>
<div class="content-group">
<div class="mt16">
<field name="default_seats" class="o_light_label"/>
</div>
</div>
</div>
</div>
</div>
</div>
</xpath>
</field>
</record>

<record id="openacademy_settings_action" model="ir.actions.act_window">
<field name="name">Openacademy Configuration</field>
<field name="res_model">res.config.settings</field>
<field name="view_id" ref="openacademy_settings_view2"/>
<field name="view_mode">form</field>
<field name="target">inline</field>
<field name="context">{'module' : 'openacademy'}</field>
</record>

<menuitem id="openacademy_settings_menu" name="Configuration"
parent="main_openacademy_menu" action="openacademy_settings_action"/>
</odoo>

5
Avatar
Ignorer
Avatar
Qutechs, Ahmed M.Elmubarak
Meilleure réponse

Hello,

You can check this question

also you can check the HR configuration in addons/hr check the res_config.py and res_config_view.xml it simple and straight forward one. also you can check the base res_config in /addons/base/res res_config.py check the res_config_settings class documentation

Regards

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
USUARIO DE LECTURA - ODOO
settings
Avatar
Avatar
Avatar
2
sept. 25
793
Fiscal localizations
settings
Avatar
Avatar
2
avr. 25
11080
Where is the "Translated Terms" Menu in Odoo 16? Résolu
settings
Avatar
Avatar
Avatar
Avatar
Avatar
5
mars 25
21347
setting on v17 ce
settings
Avatar
1
juin 24
2625
I can't open setting Résolu
settings
Avatar
1
mai 24
2824
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now