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

How to change a state when a field in res.partner is updated?

Iscriviti

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

La domanda è stata contrassegnata
functionpartnercustomerres.partnerodoo10
1 Rispondi
10148 Visualizzazioni
Avatar
wizardz

Hi.

I want to make a little change to the def write() function in res.partner.

My first problem is, that I don't find the function "write" in official Odoo10 module "account" in the partner.py file.

The second problem is, that I don't know how I can check if any field is changed. I need to check that and then when something changed I need to set the "state to draft". 


So for example:

@api.model
def write(self):
self.write({'state': 'draft'})
return True


Thank you


update:

I have this 2 functions:

@api.multi
def confirm_customer(self):
self.state = 'confirmed'
return True
@api.multi
def write(self, data):
res = super(Partner, self).write(data)
if self.state == 'confirmed':
self.state = 'draft'
return res

After I click my button "confirm_customer" it should go to state=confirmed. It works fine without the "def write" function.

But with the write function it doesn't work.

Now it didn't change the "confirm_customer" state to confirm. It stays all the time on draft.







0
Avatar
Abbandona
Mohammed Amal N

When you use self.a_field = 'some_value' write function is called. So when you call self.state = 'confirm' it will go to write. Write your functions accordingly

also in your write function don't use self.field = 'a_value' pass values by dictionary

wizardz
Autore

so I need to write something like this : vals (dict) vals{'foo': 1, 'bar': "Qux"}

wizardz
Autore

I mean, I have no idea how I can change a value without using the .write() method...

wizardz
Autore

any solution on that problem ?

Avatar
Mohammed Amal N
Risposta migliore

Hello,

I think you cant use self.write in def write as it will create a recurring problem.

What you can do is to pass values as dictionary in write function

an example to see stage_id and changed stage_id of hr_recruitment

@api.multi
def write(self, data):
res = super(YourClassName, self).write(data)
print data['stage_id'], data['last_stage_id']
return res


2
Avatar
Abbandona
wizardz
Autore

Thank you Mohammed. I fixed my problem with this: data['state'] = 'draft'

wizardz
Autore

I have a new problem now, my other buttons doesn't work now. because it's going in the write method everytime...

Mohammed Amal N

sorry. i don't get your problem correctly. Can you explain it a little more

wizardz
Autore

I updated the question above , thank you

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à
What is the usefulness of the field "date" in res_partner? Risolto
partner customer res.partner
Avatar
Avatar
Avatar
3
feb 18
4753
Field position in Odoo 15
customer res.partner
Avatar
Avatar
1
ott 25
1792
Extending res.partner - first custom field worked, second raises "ProgrammingError: column ... does not exist" - what did I do wrong? Risolto
res.partner odoo10
Avatar
Avatar
Avatar
Avatar
Avatar
8
apr 23
19958
Is there a differnce? commercial_company_name vs company_name Risolto
res.partner odoo10
Avatar
Avatar
2
dic 16
7235
Add record to Many2many field from Many2one field
partner customer
Avatar
0
mar 16
5627
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