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

Doubt in onchange function, wants to return date.

Iscriviti

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

La domanda è stata contrassegnata
2 Risposte
3578 Visualizzazioni
Avatar
rosey

I have four fields

join - date field

rejoin - date field

date - date field

days - char

<field name="join" on_change="on_change_join(date_join)"/>

<field name="rejoin" on_change="on_change_rejoin(date_rejoin)"/>

<field name="date" />

<field name="days" on_change="on_change_rejoin(days)"/>

 

When we enter join/rejoin date field, it will call the onchange function.

def on_change_join/rejoin(self, cr, uid, ids, join/rejoin, context=None):
          records = self.browse(cr, uid, ids, context=context)
          res = {}
          for r in records:
            
              vacation_due = 0
              format_string =  "%Y-%m-%d"
              if r.join/rejoin:
                  datetime_object = datetime.strptime(r.join/rejoin, format_string).date()
                  print "datetime_object",datetime_object
                  new_date = datetime_object + relativedelta(years=2)
                  print "new_date",new_date
                  new_date_string = datetime.strftime(new_date,format_string)
                  print "new_date_string",new_date_string
              
              
              return {'value': {'date': new_date_string}}

But it doesnt shows clear output. ie, it shows error when i first enter join/rejoin date

Error: return {'value': {'date': new_date_string}}

UnboundLocalError: local variable 'new_date_string' referenced before assignment

 

 

When i enter days, it will sum up with date field. But it also shows error

 

def my_onchange_days(self, cr, uid, ids,days, context=None):

 return {'value': {'date': (datetime.strptime(date,'%Y-%m-%d %H:%M:%S') + relativedelta(days=days)).strftime('%Y-%m-%d %H:%M:%S')}}

 Please help me any one to solve this.

 

 

 

0
Avatar
Abbandona
Avatar
Narayanamurthy
Risposta migliore

Hi rosey, i either of both tho functions you need to check the field value befor doing and calculation on it

def on_change_join/rejoin(self, cr, uid, ids, join/rejoin, context=None):
          records = self.browse(cr, uid, ids, context=context)
          res = {}

          new_date_string = False
          for r in records:
              vacation_due = 0
              format_string =  "%Y-%m-%d"
              if r.join/rejoin:
                  datetime_object = datetime.strptime(r.join/rejoin, format_string).date()
                  print "datetime_object",datetime_object
                  new_date = datetime_object + relativedelta(years=2)
                  print "new_date",new_date
                  new_date_string = datetime.strftime(new_date,format_string)
                  print "new_date_string",new_date_string

       return {'value': {'date': new_date_string}}

And

def my_onchange_days(self, cr, uid, ids,days, context=None):
    res = {}
    if days:
        res['date'] : (datetime.strptime(date,'%Y-%m-%d %H:%M:%S') + relativedelta(days=days)).strftime('%Y-%m-%d %H:%M:%S')}
return {'value': res }

 

 

0
Avatar
Abbandona
Dimple

hai, i getting this error while doing this code res['date'] : (datetime.strptime(date,'%Y-%m-%d %H:%M:%S') + ^ relativedelta(days=days)).strftime('%Y-%m-%d %H:%M:%S')} SyntaxError: invalid syntax

Ivan

Did you notice the ^ sign in front of relativedelta that you have pasted?

Avatar
Temur
Risposta migliore

hi,

for resolve "UnboundLocalError: local variable 'new_date_string' referenced before assignment", try:

def on_change_join/rejoin(self, cr, uid, ids, join/rejoin, context=None):
          records = self.browse(cr, uid, ids, context=context)
          res = {}
          vals = {}
          for r in records:
            
              vacation_due = 0
              format_string =  "%Y-%m-%d"
              if r.join/rejoin:
                  datetime_object = datetime.strptime(r.join/rejoin, format_string).date()
                  print "datetime_object",datetime_object
                  new_date = datetime_object + relativedelta(years=2)
                  print "new_date",new_date
                  new_date_string = datetime.strftime(new_date,format_string)
                  vals['date'] = new_date_string
                  print "new_date_string",new_date_string
              
              
              return {'value': vals}

 

reagards,

0
Avatar
Abbandona
Dimple

hai, i tried this code but it didn't returning any value. what will i do to return the value?

Temur
-in this line, why you're passing 'date_rejoin' as parameter in XML? you've another field named "date_rejoin"? if you're trying to pass this same field, then please try instead. I mean that you've to use parameter name exactly as it appears in 'name' paroperty (name="rejoin"...). Same for other fields.
Temur

in this line: field name="rejoin" on_change="on_change_rejoin(date_rejoin) try instead: field name="rejoin" on_change="on_change_rejoin(rejoin) -these parts disappeared from my previous comment, due to xml tags... < >

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
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