Guest User

Untitled

a guest
Jan 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. class UI{
  2. addDetalle(detalleComprobante){
  3. const productList=document.getElementById('productos')
  4. const elemento=document.createElement('tr')
  5. elemento.className='datosFactura'
  6. elemento.innerHTML=`
  7. <td>${detalleComprobante.codUnidadMedida} <input type="hidden" class="detalleFactura" value="${detalleComprobante.codUnidadMedida}"></td>
  8. <td>${detalleComprobante.ctdUnidadItem} <input type="hidden" class="detalleFactura" value="${detalleComprobante.ctdUnidadItem}"></td>
  9. <td>${detalleComprobante.desItem} <input type="hidden" class="detalleFactura" value="${detalleComprobante.desItem}"></td>
  10. <td>${detalleComprobante.mtoValorUnitario} <input type="hidden" class="detalleFactura" value="${detalleComprobante.mtoValorUnitario}"></td>
  11. <td><button name="eliminarDetalle" type="button ">Eliminar</button ></td>
  12. <td><button type="button ">Editar</button ></td>
  13. `
  14. productList.appendChild(elemento)
  15. }
Add Comment
Please, Sign In to add comment