我需要知道如何使用Odoo Studio在datetime字段中仅显示时间小部件。
这是我的查看代码:
<data>
<xpath expr="//form[1]/sheet[1]" position="before">
<header>
<button name="action_pagar_aniego" string="Pagar aniego" class="oe_highlight" icon="fa-money" type="object" effect="{}"/>
<field name="x_studio_field_iuQMS" options="{'clickable': '0'}" widget="statusbar"/>
</header>
</xpath>
<xpath expr="//group[@name='studio_group_3c5efe_left']" position="inside">
<field name="x_studio_turbina" attrs="{}" required="1"/>
<field name="x_studio_cliente" string="Cliente" domain="["&",["is_company","=",False],["customer","=",True]]" attrs="{"invisible": [["x_studio_turbina","=",False]]}" required="1"/>
<field name="x_studio_hora_inicio" string="Hora inicio" widget="float_time" attrs="{}" required="1"/>
<field name="x_studio_inicio_aniego" string="Hora inicio" attrs="{}" required="1" widget="datetime"/>
</xpath>
<xpath expr="//group[@name='studio_group_3c5efe_right']" position="inside">
<field name="x_studio_tipo_estimacion" string="Tipo estimación" widget="radio" attrs="{}" required="1"/>
<field name="x_studio_lectura" string="Lectura" attrs="{}" required="1"/>
</xpath>
<xpath expr="//form[1]/sheet[1]" position="after">
<div class="oe_chatter" name="studio_div_79b5db">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="message_ids" widget="mail_thread"/>
</div>
</xpath>
</data>
我知道,如果将float
放在widget="float_time"
字段中,则可以存储它,并且它在视图中以hh:mm
的形式显示在"x_studio_hora_inicio"
的视图中视图。
但是datetime
字段和widget="datetime"
就像字段"x_studio_inicio_aniego"
一样显示日期时间选择器,例如i can´t post a image yet but this is the link。
我正在尝试隐藏日期选择器,仅显示一个时间选择器以选择时间,并显示类似i can´t post a image yet but this is the link