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

datetime timedelta datatype missmatch?

Abonare

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

Această întrebare a fost marcată
datetimetimedelta
2 Răspunsuri
17428 Vizualizări
Imagine profil
Lucas Huber

I try to add some minutes and hours to a Datetime field. Somehow I get a datatype missmatch and I can't figure out what is wrong. Everything that I try gets an error:

File "/opt/odoo/custom/....... in onchange_duration_hrs
end_time = (self.start_datetime + timedelta(hours=hour, minutes=minute))  
TypeError: coercing to Unicode: need string or buffer, datetime.timedelta found


File "/opt/odoo/custom/addons..... line 182, in onchange_duration_hrs
end_time = (self.start_datetime + datetime.timedelta(hours=hour, minutes=minute))
AttributeError: type object 'datetime.datetime' has no attribute 'timedelta'


If I just change the field self.start_datetime to datetime.now() the function works correct. 

start_datetime = fields.Datetime(string='Start DateTime')

end_time = (datetime.now() + datetime.timedelta(hours=hour, minutes=minute))

Any hint would be welcome?

 

0
Imagine profil
Abandonează
Imagine profil
Lucas Huber
Autor Cel mai bun răspuns

Thanks to Yvans post I have now a solution (his code did cause still an error):

@api.multi  # getting integer out of float from widget "float_time" 
def _float_time_convert(self, float_val):
factor = float_val < 0 and -1 or 1
val = abs(float_val)
return (factor * int(math.floor(val)), int(round((val % 1) * 60)))


@api.one  # Getting the Stop DateTime
@api.onchange('start_datetime', 'toggle')
def _get_stop_time_hrs(self):
    if not (self.start_datetime and self.duration) or self.allday is True:
   return value
   start_time = datetime.strptime(self.start_datetime, DEFAULT_SERVER_DATETIME_FORMAT)
   hour, minute = self._float_time_convert(self.duration)
   end_time = (start_time + timedelta(hours=hour,   minutes=minute)).strftime(DEFAULT_SERVER_DATETIME_FORMAT)
    self.stop_datetime = end_time

But I still get an strftime error when I try to get the result back to datetime field with return value from method (without onchange api ofcourse)?

 return end_time




0
Imagine profil
Abandonează
Imagine profil
Yvan
Cel mai bun răspuns

Hi Lucas,

the problem is the type of self.start_datetime: it's a string and not as expected a datetime object. You have to convert the string to a datetime object before you add a timedelta. To to this, use the fields.Datetime.from_string method as shown below


end_time = fields.Datetime.from_string(self.start_datetime) + datetime.timedelta(hours=hours, minutes=minute)

Best regards

Yvan

0
Imagine profil
Abandonează
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
Related Posts Răspunsuri Vizualizări Activitate
Difference Between Two Dates (result not showing up when diff = 0 Day)
datetime
Imagine profil
Imagine profil
Imagine profil
3
iun. 25
1813
odoo12 CE. Unsupported operand type +: 'bool' and datetime + timedelta(hours=3) Rezolvat
attendance datetime checkout timedelta
Imagine profil
Imagine profil
Imagine profil
Imagine profil
4
oct. 24
11802
date time DB
datetime
Imagine profil
Imagine profil
1
iul. 23
4636
How to get date max in next month?
datetime
Imagine profil
Imagine profil
Imagine profil
Imagine profil
Imagine profil
4
dec. 22
10394
calculation of dates in odoo
datetime
Imagine profil
Imagine profil
2
apr. 21
4370
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