Advertisement
corzopabloariel

consulta_kardex

Apr 9th, 2020
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var xhr = new XMLHttpRequest();
  2. xhr.open("POST", 'http://acceso.mazzola.com.ar/web_services/consulta_kardex.php', true);
  3. xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  4.  
  5. xhr.onreadystatechange = function()
  6. {
  7.     if (this.readyState === XMLHttpRequest.DONE && this.status === 200)
  8.     {
  9.  
  10.     }
  11. }
  12. xhr.send("fecha_desde=2020-04-01&fecha_hasta=2020-04-07&id_almacen= 1&id_clase=1&id_cliente=1658&id_grupo=2&id_nave=4&id_sub_grupo=22&id_usuario=1067");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement