Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Doubt in onchange function, wants to return date.

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
2 Răspunsuri
3573 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
Narayanamurthy
Cel mai bun răspuns

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
Imagine profil
Abandonează
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?

Imagine profil
Temur
Cel mai bun răspuns

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
Imagine profil
Abandonează
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... < >

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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