I need a set digits on float field in xml. In python we can set digits like this

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

How to set digits on float field in xml in openerp 6?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 2 down vote accepted

From an OpenERP XML file :

<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>

I hope it will help you !

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.