Commit 94cac87d authored by Jérome Perrin's avatar Jérome Perrin

Generate larger columns for numbers, due to thousand separators.



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@13765 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent edab29e1
......@@ -151,7 +151,7 @@ for listboxline in listboxline_list:\n
col_count = 0\n
for column_id, column_property in listboxline.getColumnItemList():\n
if isinstance(column_property, number):\n
string_property = "%s+++" % (column_property)\n
string_property = "%s++++++" % (column_property)\n
else:\n
string_property = str(column_property or \'\')\n
if listboxline.isStatLine():\n
......
25
\ No newline at end of file
26
\ No newline at end of file
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