mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-16 18:34:55 +02:00
Merge branch '310-Mejoras_pandora_revent_para_TMB_rev' into 'develop'
fixed autovalidate event in pandora_revent with extra_id See merge request !621
This commit is contained in:
commit
031ff3f6d2
@ -8998,6 +8998,13 @@ function api_set_create_event($id, $trash1, $other, $returnType) {
|
|||||||
}
|
}
|
||||||
if ($other['data'][18] != '') {
|
if ($other['data'][18] != '') {
|
||||||
$values['id_extra'] = $other['data'][18];
|
$values['id_extra'] = $other['data'][18];
|
||||||
|
$sql_validation = 'SELECT id_evento FROM tevento where estado=0 and id_extra ="'. $other['data'][18] .'";';
|
||||||
|
$validation = db_get_all_rows_sql($sql_validation);
|
||||||
|
if($validation){
|
||||||
|
foreach ($validation as $val) {
|
||||||
|
api_set_validate_event_by_id($val['id_evento']);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$values['id_extra'] = '';
|
$values['id_extra'] = '';
|
||||||
@ -9178,12 +9185,10 @@ function api_get_netflow_get_summary ($discard_1, $discard_2, $params) {
|
|||||||
//http://localhost/pandora_console/include/api.php?op=set&op2=validate_event_by_id&id=23&apipass=1234&user=admin&pass=pandora
|
//http://localhost/pandora_console/include/api.php?op=set&op2=validate_event_by_id&id=23&apipass=1234&user=admin&pass=pandora
|
||||||
function api_set_validate_event_by_id ($id, $trash1, $trash2, $returnType) {
|
function api_set_validate_event_by_id ($id, $trash1, $trash2, $returnType) {
|
||||||
global $config;
|
global $config;
|
||||||
|
|
||||||
$data['type'] = 'string';
|
$data['type'] = 'string';
|
||||||
$check_id = db_get_value('id_evento', 'tevento', 'id_evento', $id);
|
$check_id = db_get_value('id_evento', 'tevento', 'id_evento', $id);
|
||||||
|
|
||||||
if ($check_id) { //event exists
|
if ($check_id) { //event exists
|
||||||
|
|
||||||
$status = db_get_value('estado', 'tevento', 'id_evento', $id);
|
$status = db_get_value('estado', 'tevento', 'id_evento', $id);
|
||||||
if ($status == 1) { //event already validated
|
if ($status == 1) { //event already validated
|
||||||
$data['data'] = "Event already validated";
|
$data['data'] = "Event already validated";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user