Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

Despite correct terminal outputs, Odoo's frontend displays a different value of check-out hours (a TZ problem)

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
hremployeeattendancetimezones
2893 Widoki
Awatar
Victor Schumann

Hello everyone,

I hope you are having a good day. I have encountered an issue with the code bellow.


PROBLEM:

Despite the output being as expected, when I navigate to the Attendances module, I notice that the checkout times for the employees are not correct. The employee was checked out at 15:00 (instead of 14:00), and the admin was checked out at 19:00 (instead of 18:00). I believe two factors might be causing this issue, but I am uncertain how to resolve them:

  1. The server's timezone and the current time appear to be incorrect. The TZ is set to None, and the current time is defaulting to GMT 0, as indicated in the output. This might be causing Odoo to adjust the checkout times by adding +01:00:00 to them.

  2. We are currently observing daylight saving time in Lisbon/Europe, which could also be contributing to the discrepancy in checkout times.

I attempted to address this by forcing the functions to use the Administrator's timezone instead of the server's timezone, but it did not resolve the issue. I even tried to alter the hidden user OdooBot, and setting up a timezone, without results.

If anyone has insights on how to rectify this situation, I would greatly appreciate your assistance.

Thank you in advance, and have a nice day.

Best regards,


CODE:

from odoo import _, api, fields, models
from datetime import datetime
import pytz

class HrAttendance(models.Model):
_inherit = 'hr.attendance'

def _auto_attendance_checkout(self):
current_time_lisbon = datetime.now(pytz.timezone('Europe/Lisbon'))
current_time_brazil = datetime.now(pytz.timezone('America/Sao_Paulo'))

# admin_datetime gets the admin user tz (same format as above):
admin_datetime = datetime.now(pytz.timezone(self.env['res.users'].browse(1).tz))

checked_out_records = self.search([('check_out', '=', False), ('check_in', '!=', False)])
for record in checked_out_records:
check_in_datetime = fields.Datetime.from_string(record.check_in)

# Convert current datetime to user's timezone
converted_datetime = self._convert_to_admin_tz(record.employee_id, admin_datetime)

# Calculate logout time in user's timezone
logout_time_user_tz = self._get_logout_time(admin_datetime, record.employee_id)

# Update check_out field with logout time
record.check_out = logout_time_user_tz.strftime('%Y-%m-%d %H:%M:%S')

print(f"\n============== USER DATA ==============\n")
print(f"\tUSER NAME: {record.employee_id.name}")
print(f"\tUSER TIME (ADMIN TZ): {converted_datetime}")

print(f"\n\tCHECK IN: {check_in_datetime}")
print(f"\tCHECK OUT: {record.check_out}")

print(f"\n\tLISBON TZ: {current_time_lisbon}")
print(f"\tBRAZIL TZ: {current_time_brazil}")
print(f"\tADMIN TZ: {admin_datetime}")
print(f"\tSERVER DATETIME: {fields.Datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
print(f"\tSERVER TZ: {fields.Datetime.now().tzname()}\n")

def _convert_to_admin_tz(self, employee, admin_tz):
user_tz = pytz.timezone(employee.tz)
converted_datetime = admin_tz.astimezone(user_tz)

return converted_datetime

def _get_logout_time(self, check_in_datetime, employee):
user_tz = pytz.timezone(employee.tz)
logout_time = check_in_datetime.replace(hour=18, minute=0, second=0)
convert_checkout_time = logout_time.astimezone(user_tz)

return convert_checkout_time


TERMINAL OUTPUT:

============== USER DATA ==============

USER NAME: Employee from Brazil
USER TIME (ADMIN TZ): 2023-05-10 11:22:22.346949-03:00

CHECK IN: 2023-05-10 08:26:53
CHECK OUT: 2023-05-10 14:00:00

LISBON TZ: 2023-05-10 15:22:22.344828+01:00
BRAZIL TZ: 2023-05-10 11:22:22.344981-03:00
ADMIN TZ: 2023-05-10 15:22:22.346949+01:00
SERVER DATETIME: 2023-05-10 14:22:22
SERVER TZ: None


============== USER DATA ==============

USER NAME: Administrator from Portugal
USER TIME (ADMIN TZ): 2023-05-10 15:22:22.346949+01:00

CHECK IN: 2023-05-10 08:04:47
CHECK OUT: 2023-05-10 18:00:00

LISBON TZ: 2023-05-10 15:22:22.344828+01:00
BRAZIL TZ: 2023-05-10 11:22:22.344981-03:00
ADMIN TZ: 2023-05-10 15:22:22.346949+01:00
SERVER DATETIME: 2023-05-10 14:22:22
SERVER TZ: None


0
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
Connect fingerprint devices to Odoo Rozwiązane
hr attendance
Awatar
Awatar
1
maj 25
2063
Employee Attendance Resume Per Day
employee attendance
Awatar
0
lis 24
1639
Flexible Working Hours
hr employee payroll attendance working_time
Awatar
0
lis 23
80
Allow employees to see their own attendances Rozwiązane
hr attendance
Awatar
Awatar
Awatar
Awatar
Awatar
6
sty 23
18362
odoo13: Button with function of capture image Rozwiązane
hr attendance
Awatar
Awatar
2
gru 22
5758
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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