detalles en totales empezando alta de material

This commit is contained in:
2019-06-19 22:13:13 -05:00
parent 2e61ff9d8c
commit b3adaec6ed
5 changed files with 309 additions and 79 deletions
+18
View File
@@ -0,0 +1,18 @@
$(alta_material());
function alta_material(consulta){
$.ajax({
url: 'alta_m.php',
dataType: 'html',
data: {consulta: consulta},
})
.done(function (respuesta) {
$('#alta').html(respuesta);
})
.fail(function () {
console.log("error");
})
}