Skip to content

Instantly share code, notes, and snippets.

@HashRaygoza
Created February 14, 2018 22:27
Show Gist options
  • Save HashRaygoza/44eb5fde7b72309ac42367032ecbd0b2 to your computer and use it in GitHub Desktop.
Save HashRaygoza/44eb5fde7b72309ac42367032ecbd0b2 to your computer and use it in GitHub Desktop.
ventas.stream().forEach((venta) -> {
estados.stream().filter((estado) -> (Objects.equals(venta.getPc(), estado.getPc()))).filter((estado) -> (estado.getPcStatus() != 5)).forEach((_item) -> {
imprimibles.add(venta);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment