编程语言
首页 > 编程语言> > python-在xml中的float字段上设置数字

python-在xml中的float字段上设置数字

作者:互联网

我需要在xml的float字段上设置数字.在python中,我们可以像这样设置数字

'data': fields.float('Data', digits=(16,4))

如何在openerp 6的xml中的float字段上设置数字?

解决方法:

从OpenERP XML文件:

<group colspan="2" col="2" groups="base.group_extended">
                            <separator string="Weights" colspan="2"/>
                            <field digits="(14, 3)" name="volume" attrs="{'readonly':[('type','=','service')]}"/>
                            <field digits="(14, 3)" name="weight" attrs="{'readonly':[('type','=','service')]}"/>
                            <field digits="(14, 3)" name="weight_net" attrs="{'readonly':[('type','=','service')]}"/>
                        </group>

希望对您有帮助!

标签:openerp,python
来源: https://codeday.me/bug/20191102/1990249.html