IDEMPIERE-385 Fix UTF8 character in WListBox / Show storage totals on Info Product Panel
This commit is contained in:
parent
2cbd0d0d4f
commit
25a94f6f1d
|
@ -1189,7 +1189,7 @@ public class WListbox extends Listbox implements IMiniTable, TableValueChangeLis
|
||||||
{
|
{
|
||||||
if(col == 0 )
|
if(col == 0 )
|
||||||
{
|
{
|
||||||
setValueAt(" Σ " , row -1 , col);
|
setValueAt(" \u03a3 " , row -1 , col);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
setValueAt(null , row - 1, col );
|
setValueAt(null , row - 1, col );
|
||||||
|
|
Loading…
Reference in New Issue