Commit 1bd22867 authored by Kevin Deldycke's avatar Kevin Deldycke

Don't format float value, else decimals below second rank will be not display

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7803 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 900d0083
......@@ -1758,7 +1758,7 @@ onChange="submitAction(this.form,'%s/portal_selections/setReportRoot')">
pass
else:
#attribute_original_value = attribute_value
attribute_value = float("%.2f" % attribute_value)
attribute_value = float("%f" % attribute_value)
td_align = "right"
elif isinstance(attribute_value, (int, long)):
attribute_original_value = attribute_value
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment