Fixed problems with created modules synthetic. Tiquet: #3034
This commit is contained in:
parent
79c8305920
commit
36f955a491
|
@ -3288,6 +3288,14 @@ sub cli_create_synthetic() {
|
|||
print("[ERROR] Type of syntethic module doesn't exists \n\n");
|
||||
exit 1;
|
||||
}
|
||||
if (scalar(@{module_data}) == 0) {
|
||||
print("[ERROR] No modules data \n\n");
|
||||
exit 1;
|
||||
}
|
||||
if ($name_module eq '') {
|
||||
print("[ERROR] No module name \n\n");
|
||||
exit 1;
|
||||
}
|
||||
|
||||
$module->{'custom_integer_1'} = 0;
|
||||
$module->{'custom_integer_2'} = 0;
|
||||
|
@ -3304,6 +3312,9 @@ sub cli_create_synthetic() {
|
|||
print("[ERROR] With this type: $synthetic_type only be allow use this operator: 'x' \n\n");
|
||||
exit 1;
|
||||
}
|
||||
if (is_numeric(@split_data[1]) == 0) {
|
||||
next;
|
||||
}
|
||||
@data_module = ("",@split_data[0],@split_data[1]);
|
||||
my $text_data = join(',',@data_module);
|
||||
push (@filterdata,$text_data);
|
||||
|
@ -3335,7 +3346,9 @@ sub cli_create_synthetic() {
|
|||
|
||||
$module->{'id_agente'} = $id_agent;
|
||||
$module->{'nombre'} = safe_input($name_module);
|
||||
my $id_tipo_modulo = get_db_value ($dbh, "SELECT id_tipo FROM ttipo_modulo WHERE nombre = ?", "generic_data");
|
||||
$module->{'id_modulo'} = 5;
|
||||
$module->{'id_tipo_modulo'} = $id_tipo_modulo;
|
||||
|
||||
my $id_module = db_process_insert($dbh, 'id_agente_modulo', 'tagente_modulo', $module);
|
||||
|
||||
|
@ -3346,10 +3359,12 @@ sub cli_create_synthetic() {
|
|||
print("[OK] The modules are creating ID: $id_module \n\n");
|
||||
}
|
||||
else {
|
||||
db_do ($dbh, 'DELETE FROM tagente_modulo WHERE id_agente_modulo = ?', $id_module);
|
||||
print("[ERROR] Problems with creating data module. \n\n");
|
||||
}
|
||||
}
|
||||
else {
|
||||
db_do ($dbh, 'DELETE FROM tagente_modulo WHERE nombre = ? AND id_agente = ?', $name_module, $id_agent);
|
||||
print("[INFO] Problems with creating module \n\n");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue