realizado el calculo por horas e introducido en el comparador

This commit is contained in:
Jaime Jiménez
2024-01-03 16:57:55 +01:00
parent fbea595a6b
commit 04f5748cb3
16 changed files with 240 additions and 49 deletions

View File

@ -178,6 +178,18 @@
editor.on( 'postSubmit', function ( e, json, data, action ) {
yeniden(json.<?= csrf_token() ?>);
const domain = window.location.origin
fetch(domain + "/clientes/clienteprecios/update/" + -1 , {
method: "POST",
body: JSON.stringify({
plantilla_id: id,
<?= csrf_token() ?? "token" ?> : <?= csrf_token() ?>v
}),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
})
});
editor.on( 'submitSuccess', function ( e, json, data, action ) {