Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How to get users timezone for python?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
moduletimezonecontext
1 Respondre
36087 Vistes
Avatar
Laura Jarvenpaa

I have created a module which overwrites some functions on leaves management. This function includes getting employee working schedule from contract and calculating leave length based on the contract (In my company there can be leaves that are less than one day) the times provided by working schedule are just in format: {'time_from': 8.00, 'time_to':18:00} so they don't include any kind of timezone information however dates are transformed into utc time when they are inserted to db and when you compare those times with working schedule times you need to correct timezone to user's timezone.

My code is like this and as you see there is three places where 8 is added on dates to fix this timezone problem which is fine now when our openerp is used in utc+8 but in future we plan to enable using our system outside of our LAN and then there may be people located in different timezones using it so this fix won't help in future:

def _get_number_of_days(self, date_from, date_to, cr, uid, ids, employee_id):

    DATETIME_FORMAT = "%Y-%m-%d %H:%M:%S"
    date_from = datetime.datetime.strptime(date_from, DATETIME_FORMAT)
    date_to = datetime.datetime.strptime(date_to, DATETIME_FORMAT)
    timedelta = date_to - date_from
    working_shift = 86400
    diff_day = float();
    if timedelta.days > 1:
        diff_day += timedelta.days - 1

    if(employee_id):
        contract_pool = self.pool.get('hr.contract')
        active_contract_ids= contract_pool.search(cr, uid, [
        '&',
        ('employee_id', '=', employee_id),
        '|',
        '&',
        ('date_start', '<=', date_to),
        '|',
        ('date_end', '>=', date_to),
        ('date_end', '=', False),
        '&',
        '|',
        ('trial_date_start', '=', False),
        ('trial_date_start', '<=', date_to),
        '|',
        ('trial_date_end', '=', False),
        ('trial_date_end', '>=', date_to),
        ])
        if active_contract_ids:
            contract = contract_pool.browse(cr, uid, active_contract_ids[0])

            cr.execute("select hour_from, hour_to from resource_calendar_attendance where calendar_id = %s and dayofweek = %s order by hour_from;", (contract.working_hours.id, str(date_from.isoweekday())))
            start_timetable = cr.dictfetchall()
            if start_timetable:

                start_working_shift = self.pool.get('resource.calendar').working_hours_on_day(cr, uid, contract.working_hours, date_from)

                if start_working_shift:
                    # add 8 hours to fix timezone                                                                                                        
                    start_time = date_from.hour + 8 + float(date_from.minute)/60
                    if date_to.date() == date_from.date():
                        # add 8 hours to fix timezone                                                                                                    
                        end_time = date_to.hour + 8 + float(date_to.minute)/60
                        if start_time < start_timetable[0]['hour_from'] and end_time > start_timetable[len(start_timetable) - 1]['hour_to']:
                            # leave length is one day because it starts before starting hour and ends after ending hour                                  
                            return 1           
                        else:
                            hours = self._calculate_hours_for_working_day(start_timetable, start_time, end_time)
                            return hours / start_working_shift
                    if start_time < start_timetable[0]['hour_from']:
                            # leave length is one day because it starts before starting hour and ends after ending hour                               
                            diff_day += 1
                    else:
                        end_time = float(start_timetable[len(start_timetable) - 1]['hour_to'])
                        hours = self._calculate_hours_for_working_day(start_timetable, start_time, end_time)
                        diff_day += hours / start_working_shift


            cr.execute("select hour_from, hour_to from resource_calendar_attendance where calendar_id = %s and dayofweek = %s order by hour_from;", (contract.working_hours.id, str(date_to.isoweekday())))
            end_timetable = cr.dictfetchall()
            if end_timetable:
                end_working_shift = self.pool.get('resource.calendar').working_hours_on_day(cr, uid, contract.working_hours, date_to)
                if end_working_shift:
                    start_time = float(end_timetable[0]['hour_from'])
                    # add 8 hours to fix timezone                                                                                                        
                    end_time = date_to.hour + 8 + float(date_to.minute)/60
                    if end_time > start_timetable[len(start_timetable) - 1]['hour_to']:
                        # leave length is one day because it starts before starting hour and ends after ending hour                                      
                        diff_day += 1
                    else:
                        hours = self._calculate_hours_for_working_day(end_timetable, start_time, end_time)
                        diff_day += hours / end_working_shift

        else:
            # tell user that employee don't have contract so leaves can't be  calculated                                                                 
            raise osv.except_osv(_('Error'), _('Employee doesn\'t have contract. Leave request can\'t be done.'))
    else:
        diff_day = timedelta.days + float(timedelta.seconds) / working_shift
    return diff_day

Tried to fix this by adding parameter context for onchange function of the date selection and using pytz to transform these times to right timezone:

active_tz = pytz.timezone(context.get("tz","UTC")

this did not work (found this solution from another module but well as their module didn't work properly either it's not too big surprise that this did not work).

0
Avatar
Descartar
Avatar
Jeroen Mollers
Best Answer

To get the user's timezone you could do something like this in your code:

Version 7.0 code:

import pytz
from openerp import SUPERUSER_ID

# get user's timezone
user_pool = self.pool.get('res.users')
user = user_pool.browse(cr, SUPERUSER_ID, uid)
tz = pytz.timezone(user.partner_id.tz) or pytz.utc

# get localized dates
date_from = pytz.utc.localize(datetime.datetime.strptime(date_from, DATETIME_FORMAT)).astimezone(tz)
date_to   = pytz.utc.localize(datetime.datetime.strptime(date_to, DATETIME_FORMAT)).astimezone(tz)

Users that use version 6.1 should change the code line:

tz = pytz.timezone(user.partner_id.tz) or pytz.utc

into code line:

tz = pytz.timezone(user.context_tz) or pytz.utc
4
Avatar
Descartar
Laura Jarvenpaa
Autor

Thanks this was helpful but at least in version 7 I had to do following modification on your code: user_pool = self.pool.get('res.partner') user = user_pool.browse(cr, SUPERUSER_ID, uid) tz = pytz.timezone(user.tz) or pytz.utc because timezone info is now in res.partner not in res.users and timezone info provided by that table had to be converted into timezone as it is only string. If you add these modifications to your answer I can mark it as right.

Jeroen Mollers

You are correct. My code was for version 6.1. In your suggested modification you retrieve a partner record based on a user's ID. I suggest to modify my original code from "tz = pytz.timezone(user.context_tz) or pytz.utc" to "tz = pytz.timezone(user.partner_id.tz) or pytz.utc". I have modified my original answer and also included the version 6.1 one in case someone is interested in that one.

Laura Jarvenpaa
Autor

Ok, good to know.

Ashish Singh

when we print "date_from" its display like '2014-08-14 05:25:55+05:30' i am using time-zone 'Asia/Kolkata'

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
time zone is missing in context when a scheduler method is invoked
timezone scheduler context
Avatar
0
d’oct. 16
4427
context not work ???
context
Avatar
Avatar
1
de gen. 25
2073
Error when importing module Product Bidding In ECommerce in odoo 17
module
Avatar
Avatar
1
de jul. 24
2610
Missing required value for the field 'Model' (model_id)
module
Avatar
Avatar
1
de gen. 24
6493
Time zone problem in python
timezone
Avatar
Avatar
2
d’abr. 23
4096
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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