Advertisement
JUNIORCEDE1

Untitled

Jul 26th, 2021
1,316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let sacos = 0;
  2. let gavetas_caladas = 0;
  3. let gavetas_conicas = 0;
  4. let hielo = 0;
  5. lista.foreEach(item => {
  6.     if (item.descripcion.toUpperCase.contains('GAVETAS CALADAS') ) {
  7.         gavetas_caladas  += item.cantidad;
  8.     } else if (item.descripcion.toUpperCase.contains('GAVETAS CONICAS') ) {
  9.         gavetas_conicas   += item.cantidad
  10.     } else if (item.descripcion.toUpperCase.contains('HIELO') ) {
  11.         hielo += item.cantidad
  12.     } else if (item.descripcion.toUpperCase.contains('SACOS') ) {
  13.         sacos += item.cantidad
  14.     }
  15. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement