forked from qwerty/tupali
se agrega metadato para especificar el equipo desd el que se lleno un formulario
This commit is contained in:
parent
ad8d1393d2
commit
07cb0343ca
@ -12504,6 +12504,8 @@ function formulario_grabar($formulario) {
|
|||||||
$id_empresa = remplacetas('form_id','id',$formulario['form_id'],'id_empresa',"") ;
|
$id_empresa = remplacetas('form_id','id',$formulario['form_id'],'id_empresa',"") ;
|
||||||
$id_empresa = $id_empresa[0];
|
$id_empresa = $id_empresa[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(isset ( $_SESSION['equipo'])){$equipo = $_SESSION['equipo']; }else { $equipo = NULL;}
|
||||||
foreach($formulario as $c=>$v){
|
foreach($formulario as $c=>$v){
|
||||||
|
|
||||||
|
|
||||||
@ -12591,8 +12593,8 @@ $valor_original =$V;
|
|||||||
}*/
|
}*/
|
||||||
if(!is_null($existe) AND $tipo =='edit' AND $V =='') {
|
if(!is_null($existe) AND $tipo =='edit' AND $V =='') {
|
||||||
$consulta_vacio ="
|
$consulta_vacio ="
|
||||||
INSERT INTO `form_datos` (`id`, `id_campo`,`orden`,`form_id`, `id_usuario`, `contenido`, `timestamp`, `control`, ip , id_empresa)
|
INSERT INTO `form_datos` (`id`, `id_campo`,`orden`,`form_id`, `id_usuario`, `contenido`, `timestamp`, `control`, ip , id_empresa, equipo)
|
||||||
VALUES (NULL, '$c','$C', '$formulario[form_id]', '$_SESSION[id]', '', UNIX_TIMESTAMP(), '$formulario[control]',$graba_ip,'$id_empresa');";
|
VALUES (NULL, '$c','$C', '$formulario[form_id]', '$_SESSION[id]', '', UNIX_TIMESTAMP(), '$formulario[control]',$graba_ip,'$id_empresa','$equipo');";
|
||||||
|
|
||||||
$sql=mysqli_query($link,$consulta_vacio);
|
$sql=mysqli_query($link,$consulta_vacio);
|
||||||
if($sql) {
|
if($sql) {
|
||||||
@ -12631,8 +12633,8 @@ else{$V=$V;}
|
|||||||
|
|
||||||
|
|
||||||
$consulta ="
|
$consulta ="
|
||||||
INSERT INTO `form_datos` (`id`, `id_campo`,`orden`,`form_id`, `id_usuario`, `contenido`, `timestamp`, `control`, ip , id_empresa)
|
INSERT INTO `form_datos` (`id`, `id_campo`,`orden`,`form_id`, `id_usuario`, `contenido`, `timestamp`, `control`, ip , id_empresa, equipo)
|
||||||
VALUES (NULL, '$c','$C', '$formulario[form_id]', '".@$_SESSION[id]."', '$V', UNIX_TIMESTAMP(), '$formulario[control]',$graba_ip,'$id_empresa');";
|
VALUES (NULL, '$c','$C', '$formulario[form_id]', '".@$_SESSION[id]."', '$V', UNIX_TIMESTAMP(), '$formulario[control]',$graba_ip,'$id_empresa','$equipo');";
|
||||||
|
|
||||||
$sql=mysqli_query($link,$consulta);
|
$sql=mysqli_query($link,$consulta);
|
||||||
$debug .= "$consulta = $sql ,";
|
$debug .= "$consulta = $sql ,";
|
||||||
|
Loading…
Reference in New Issue
Block a user