Skip to content

Instantly share code, notes, and snippets.

@HashRaygoza
Created February 14, 2018 22:29
Show Gist options
  • Save HashRaygoza/2b4fcd85166055800299baa115998b40 to your computer and use it in GitHub Desktop.
Save HashRaygoza/2b4fcd85166055800299baa115998b40 to your computer and use it in GitHub Desktop.
for (PcUltimaVentaVO venta: ventas) {
for (PcStatusVO estado: estados) {
if (Objects.equals(venta.getPc(), estado.getPc())) {
if (estado.getPcStatus() != 5) {
imprimibles.add(venta);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment