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
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
1
Rispondi
5318
Visualizzazioni
OpenERP Menu:
Settings --> Translations --> Languages
Open your Language and edit the record to change the Date Format to %d/%m/%Y
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
RegistratiPost correlati | Risposte | Visualizzazioni | Attività | |
---|---|---|---|---|
|
1
nov 22
|
3918 | ||
|
1
ott 21
|
2354 | ||
|
2
nov 18
|
9361 | ||
|
1
mar 15
|
2978 | ||
|
4
mar 15
|
4582 |
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;