xml contain widget="float_time"
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 会計
- 在庫
- PoS
- プロジェクト
- MRP
この質問にフラグが付けられました
2
返信
1602
ビュー
Because float_time converting float value into HH:MM format and for minute it will calculate from float value like below example.
round((float_value % 1) * 60)
So how to solve this? Because I want to get 2.15 as 2:15
I think it is not possible by using float_time widget in standard Odoo.