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
    Real Estate
    • Real Estate Agency
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consulting
    • Accounting Firm
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Furnitures
    • Food
    • 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
    • Solar Energy Systems
    • Shoe Maker
    • Serveis de neteja
    • HVAC Services
    Others
    • 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 change the Date/Calendar widget to support Solar Hijri calendar?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
systemcalendardate
14 Respostes
19327 Vistes
Avatar
Pooria Madani

I want to use OpenERP as the main ERP system for my company. The only problem is that our corporation does not use Georgian Calendar because of the geolocation of the company. In contrast, we are using Solar Hijri calendar as the offical calendar for dating our transactions.

I'm looking for direction to start. I know I have to implement it myself and there is no problem about that. But I don't know where to start.

Should keep inserting all the data into database based on Georgian Calendar but when I read them back into Web interface, I translate and convert them to Hijri Calendar ? If so what files or packages I should modify ?

Or it's better to change the server and make sure that the date is being inserted into database IS already converted to Hijri Calendar ? If so, where I'm suppose to start apply my change ?

Regards.

3
Avatar
Descartar
Martin

Probably you should indicate which operating system you will use. It may have bearing.

Pooria Madani
Autor

My server is Linux (Ubuntu or CentOS )

prakash

I don't want to change server date in to hijri I need some fields to enter Arabic date widget it is very important for person from midileast

Omid Rezvani

Pooria I checked your application, but is there a way to change the whole calendar?

Serpent Consulting Services Pvt. Ltd.

We've https://www.odoo.com/apps/modules/11.0/web_hijri_date/ now.

Avatar
Fabien Pinckaers (fp)
Best Answer

Here is the way OpenERP handles data that are location specific:

  • Data are stored in the database in UTC (not depending on the timezone of your users)
  • When the client receives the data, it translates it according to the timezone of the user which is on the global context that comes from the user preferences (so, the date/time you see on the screen is not the same than the one in the database)
  • The client sends back the new dates to the server under the UTC format

For information, the fields that are in the global context come from the context_get() method on the res.users object. You may have to overwrite this method if you want to add a new field in the global context which is sent to the client when the user logs in .

So, I think you should develop a module that:

  • _inherit the res.users object to add a preference field.selection whith the calendar he uses (gregorian / Solar Hijri)
  • overwrite the default calendar widget in the web client to use a .JS widget that support Solar Hijri calendar
  • do the translations between Solar Hijri and UTC when reading/writing dates in the widget (the current widget alreaady does this for all UTC timezones.)
5
Avatar
Descartar
Pooria Madani
Autor

Thanks for ur answer, I don't have any issue with time zone setting. All I'm trying to do is to make sure that all the recorded dates in the system is based on Solar Hijri Calendar, and but all I mean all the message that are sent, all the invoice transaction and etc.

Pooria Madani
Autor

So if I change the Calendar widget and you said, what will happen to the automatic "date" assignment that system does, like send/receiving messages, or date of the comments posted bellow invoices and etc ?

prakash

I need to add arabic date in some field like widget I dont wand keep to change all openerp in to Arabic date, any help ?

Ali

Thanks for the instructions. I will try to implement the proposed solution as I have the same requirements for my system.

Omid Rezvani

There are many languages that use different calendars, is there a direct way to change the calendar? Is there a template for doing this?

Avatar
Megha Patel
Best Answer

Pooria Madani

You may find your solution here,

https://apps.odoo.com/apps/modules/11.0/web_hijri_date/

0
Avatar
Descartar
Avatar
salman
Best Answer

Any advice regarding Hijri Calendar Widget..

see the below url

https://www.odoo.com/fr_FR/forum/help-1/question/urgent-islamic-date-widget-issue-73745

0
Avatar
Descartar
Serpent Consulting Services Pvt. Ltd.

We've https://www.odoo.com/apps/modules/11.0/web_hijri_date/ now.

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
v17 schedule wrong date
calendar date
Avatar
0
de maig 24
2584
how to change the calendar format ?
calendar date
Avatar
Avatar
1
de març 15
5842
Date Widget Autocomplete in Odoo16
calendar date autocomplete
Avatar
Avatar
1
de juny 23
3558
Calendar with multiple events
calendar date events
Avatar
1
de juny 15
5935
How make field.date can only be selected through calendar?
v6.1 calendar date
Avatar
Avatar
1
de març 15
6232
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