如何在odoo 15的表单视图中将日期时间字段格式化为小时分钟秒
I have a datetime field and i want to format it to hours, minutes, seconds in the form view like this:
Is this posible, and how to do it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我研究,我们可以使用它作为替代解决方案:
将字段从
Datetime
更改为Float
:然后,在表单视图中,添加
widget= “float_time”
:结果如下:
有了这个,就没有弹出窗口可以显示(这很糟糕,我知道)。
但正如我之前提到的,在我们找到更好的解决方案之前,这个解决方案只是一个替代解决方案。
欢迎其他答案。
请注意,对于报告视图或电子邮件视图,我们可以使用:
t-options="{'widget': 'float_time'}"
谢谢。
As far as i can research, we can use this as alternative solution:
Change the field from
Datetime
toFloat
:Then, in the form view, add
widget="float_time"
:And here's the result:
With this, there's no popup to show (It's bad, i know).
But as i mentioned before, this solution is just a alternative solution until we find better solution.
Other answers are welcome.
Note for the report view or email view, we can use this:
t-options="{'widget': 'float_time'}"
Thanks.