Change date format in whole openerp

Asked by Deven Moga

Hello,

I have created a database. Now in that i want to change the default date format to "DD, Month - Year" in whole software.
Can anyone please tell me how can i do that?
Waiting for the reply.

Sincerely,
Deven

Question information

Language:
English Edit question
Status:
Solved
For:
Odoo Server (MOVED TO GITHUB) Edit question
Assignee:
No assignee Edit question
Solved by:
Vinay Rana (OpenERP)
Solved:
Last query:
Last reply:
Revision history for this message
Vinay Rana (OpenERP) (vra-openerp) said :
#1

Hello,

Date format is taken from locale so if you set the system locale the openERP set the date and time format accordingly.

Thanks.

Revision history for this message
Deven Moga (erpsupport) said :
#2

Hello vra,

I have tried but didnt get any result. Can you please explain it in little brief?
Waiting for your reply.

Deven

Revision history for this message
Best Vinay Rana (OpenERP) (vra-openerp) said :
#3

Hello,

You can check it from python prompt also by using following command:

import locale
locale.setlocale(locale.LC_ALL,'fr_FR')
and it will set the French language locale by following way:
'fr_FR'
After do that when you start your client again it will set date/time format according to French.

You can change the date/time format from openERP client also using following menu:
Administration/Translations/Application Terms/Languages.

Thanks.

Revision history for this message
Deven Moga (erpsupport) said :
#4

Thanks vra (openerp), that solved my question.