IDEMPIERE-5949 Datatables.js and Pivot.js Report Viewer (#2274)

- fix pivot not working for amount >= 1000
This commit is contained in:
hengsin 2024-03-19 20:55:21 +08:00 committed by Carlos Ruiz
parent 5cd8d937e2
commit 84e97f63b6
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ public class PivotReportRenderer implements IReportRenderer<PivotReportRendererC
} }
if (DisplayType.isNumeric(pde.getDisplayType())) if (DisplayType.isNumeric(pde.getDisplayType()))
value=value.replace("<EFBFBD>","").replace(",","."); value = pde.getValueAsString();
jo.append(printName, value); jo.append(printName, value);
} }
} // for all columns } // for all columns