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
- Бухгалтерия
- Склад
- PoS
- Проекты
- MRP
Этот вопрос был отмечен
1
Ответить
6828
Представления
OpenERP Menu:
Settings --> Translations --> LanguagesOpen your Language and edit the record to change the Date Format to %d/%m/%Y
Не оставайтесь в стороне – присоединяйтесь к обсуждению!
Создайте аккаунт сегодня, чтобы получить доступ к эксклюзивным функциям и стать частью нашего замечательного сообщества!
Регистрация| Похожие посты | Ответы | Просмотры | Активность | |
|---|---|---|---|---|
|
|
1
нояб. 22
|
7490 | ||
|
|
1
окт. 21
|
4323 | ||
|
|
2
нояб. 18
|
11043 | ||
|
|
1
мар. 15
|
4301 | ||
|
|
4
мар. 15
|
6117 |
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;