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

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

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

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

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