对于Odoo11,当只读窗口小部件字段没有值时如何删除假值?

时间:2018-10-29 06:25:25

标签: xml widget odoo readonly

我在xml中有一些带有widget参数的字段。并且这些字段是只读的,当这些字段中未插入任何值时,它们始终显示为false。因此,如何从这些字段中删除错误。我分享了我的代码以及该问题的屏幕截图。

<group>
    <field name="partner_id" required="1"
           string="Customer"
           domain="[('customer', '=', True),('internal_user', '=', False)]"
           context="{'search_default_customer': 1,
            'default_name': partner_name, 'default_street': street,
            'default_street2': street2, 'default_city': city,
            'default_state_id': state_id, 'default_zip': zip,
            'default_country_id': country_id, 'default_function': function,
            'default_phone': phone, 'default_mobile': mobile,
            'default_email': email_from,
            'default_user_id': user_id, 'default_team_id': team_id, 'default_website': website}"/>

    <field name="email_from" string="Email" widget="email" readonly="1"/>    
    <field name="phone" widget="phone" readonly="1"/>
    <field name="website" widget="url" placeholder="e.g. www.sunarctechnologies.com"
       readonly="1"/>
</group>

enter image description here 在此先感谢

1 个答案:

答案 0 :(得分:0)

您可以在Python端使用示例“ fields.Char(string=xxxx',default='xxx')”的“默认”属性进行设置