我需要在xml中的float字段上设置一个数字。在python中我们可以设置这样的数字
'data': fields.float('Data', digits=(16,4))
如何在openerp 6中的xml中设置float字段的数字?
答案 0 :(得分:4)
来自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>
我希望它会对你有所帮助!