how can i get the date in dd mm yyyy format please help me
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilitat
- Inventari
- PoS
- Project
- MRP
This question has been flagged
1
Respondre
5331
Vistes
OpenERP Menu:
Settings --> Translations --> Languages
Open your Language and edit the record to change the Date Format to %d/%m/%Y
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Registrar-seRelated Posts | Respostes | Vistes | Activitat | |
---|---|---|---|---|
|
1
de nov. 22
|
3947 | ||
|
1
d’oct. 21
|
2359 | ||
|
2
de nov. 18
|
9366 | ||
|
1
de març 15
|
2979 | ||
|
4
de març 15
|
4583 |
You want to get the date in dd mm yyyy format using SQL query ?
SQL Query : select to_char(date,'DD/MM/YYYY') from table_name;