IDEMPIERE-5949 Datatables.js and Pivot.js Report Viewer (#2274)
- fix pivot not working for amount >= 1000
This commit is contained in:
parent
5cd8d937e2
commit
84e97f63b6
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue