Esempio n. 1
0
  public String getLastYearTotal() {
    int total = 0;

    for (Sale sale : getDetalleOC()) {
      total += sale.getNroOrden();
    }

    return new DecimalFormat("###,###").format(total);
  }