Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Add custom field in Settings->Configuration->Sales

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
configurationv8settingstransientmodel
2 Risposte
12450 Visualizzazioni
Avatar
mohamed aboelfadl

I would like to add a custom field under the sales configuration here is the pyhton code:


class auto_sales_Settings_saved(models.Model):
 _name = 'sale.config.settings.saved'
     managerrequired = fields.Boolean(default=False)
     officerrequired = fields.Boolean(default=True)

class auto_sales_Settings(models.TransientModel):
    _inherit = 'sale.config.settings'  
    _name = 'sale.config.settings'
    default_managerrequired = fields.Boolean(default_model='sale.config.settings.saved')
    default_officerrequired = fields.Boolean(default_model='sale.config.settings.saved')   
   

I created the first class to hold the values as TransientModel doesn't save values, Is this the correct way ?

and how can I access the values of these fields from other classes

0
Avatar
Abbandona
Avatar
Qutechs, Ahmed M.Elmubarak
Risposta migliore

Hi,

No, you don't need to create a new model to save the values. You will save the value in the ir.values model

you can check this line in the sales config . You also need to make a function such as set_xx_defaults  to set_default in the ir.values and this function will be called automatically when the user press the Apply button ..

Hope this could helps ...

1
Avatar
Abbandona
Avatar
Deepa Venkatesh
Risposta migliore

Config object is designed slightly different way,

It uses TransientModel, just for View declaration, however the actual data will be saved in the Params object, as you must be already aware data/record in the TransientModel can be stored only for intermediate/temporary period of time.


Hence after defining the fields, do write these two method, which acts as Saving data and Retrieving Data from the Params object.

# GETS: latest data    
def get_default_values(self, cr, uid, ids, context=None):
    param_obj = self.pool.get("ir.config_parameter")
    
    res = {'XYZ_COLUMN': param_obj.get_param(cr, uid, 'XYZ_COLUMN')
         }
    return res


similarly to store the data

# POST: saves new data    
def set_values(self, cr, uid, ids, context=None):
    param_obj = self.pool.get("ir.config_parameter")
    for record in self.browse(cr, uid, ids, context=context):
        param_obj.set_param(cr, uid, field, record['XYZ_COLUMN] or '0')


Note:

1. The above referenced sample code is in traditional style, as it was defined in osv.osv_memory but works well in V8, So the fundamentals stays true, change it to suite your new API style

2. no need to create a column name prefixed with 'default_', and it's better to avoid this, since these kind of prefixes serves a different purpose when used in the relevant places.


Hope this helps you.


2
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
How to save and update custom settings in Odoo? (TransientModel) Risolto
configuration settings transientmodel odoo8.0
Avatar
Avatar
Avatar
6
mag 19
16148
Can I export/Import just settings?
configuration v8
Avatar
3
set 24
8214
disable delete and edit options in conversations Odoo 15
configuration settings
Avatar
Avatar
Avatar
2
apr 24
5410
What are the things to watch out for before my OpenERP goes live? Version 7.
configuration settings
Avatar
0
mar 15
8180
Reserve Profit and Loss Account
configuration settings
Avatar
Avatar
1
mar 15
7525
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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