This question has been flagged
14 Replies
15479 Views

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.

Avatar
Discard

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

Author

My server is Linux (Ubuntu or CentOS )

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

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

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.)
Avatar
Discard
Author

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.

Author

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 ?

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 ?

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

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

Best Answer

Pooria Madani

You may find your solution here,

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

Avatar
Discard
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

Avatar
Discard