private int roundFiscal(double value) {
   return (int) Math.floor(RoundUtils.round(value) * 10000.0 + 0.5);
 }