Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

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

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
hremployeeattendancetimezones
2901 Tampilan
Avatar
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
Avatar
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Connect fingerprint devices to Odoo Diselesaikan
hr attendance
Avatar
Avatar
1
Mei 25
2069
Employee Attendance Resume Per Day
employee attendance
Avatar
0
Nov 24
1641
Flexible Working Hours
hr employee payroll attendance working_time
Avatar
0
Nov 23
80
Allow employees to see their own attendances Diselesaikan
hr attendance
Avatar
Avatar
Avatar
Avatar
Avatar
6
Jan 23
18362
odoo13: Button with function of capture image Diselesaikan
hr attendance
Avatar
Avatar
2
Des 22
5759
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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