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

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

    return new DecimalFormat("###,###").format(total);
  }
Esempio n. 2
0
  public String getLastYearTotal() {
    int total = 0;

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

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