2013-01-04 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* godmode/agentes/agent_template.php: Fixed duplication of modules
	when template is applied several times. 
	
	Bug id: #3599442



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7372 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2013-01-08 15:36:33 +00:00
parent cea90b747a
commit 5d5e8e4aeb
2 changed files with 55 additions and 26 deletions

View File

@ -1,3 +1,10 @@
2013-01-04 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* godmode/agentes/agent_template.php: Fixed duplication of modules
when template is applied several times.
Bug id: #3599442
2013-01-08 Dario Rodriguez <dario.rodriguez@artica.es>
* godmode/agentes/module_manager.php: changed text from Libray to Library

View File

@ -51,6 +51,10 @@ if (isset ($_POST["template_id"])) {
if ($npc === false) {
$npc = array ();
}
$success_count = $error_count = 0;
$modules_already_added = array();
foreach ($npc as $row) {
$nc = db_get_all_rows_field_filter ("tnetwork_component", "id_nc", $row["id_nc"]);
if ($nc === false) {
@ -93,6 +97,16 @@ if (isset ($_POST["template_id"])) {
'warning_instructions' => $row2['warning_instructions'],
'unknown_instructions' => $row2['unknown_instructions']
);
// Check if this module exists in the agent
$module_name_check = db_get_value_filter('id_agente_modulo', 'tagente_modulo', array('delete_pending' => 0, 'nombre' => $row2["name"]));
if ($module_name_check !== false) {
$modules_already_added[] = $row2["name"];
$error_count++;
}
else {
$id_agente_modulo = db_process_sql_insert('tagente_modulo', $values);
// Set the initial module status
@ -104,6 +118,7 @@ if (isset ($_POST["template_id"])) {
// Create with different estado if proc type or data type
if ($id_agente_modulo !== false) {
$success_count++;
$values = array(
'id_agente_modulo' => $id_agente_modulo,
'datos' => 0,
@ -120,12 +135,19 @@ if (isset ($_POST["template_id"])) {
db_process_sql ('UPDATE tagente SET total_count=total_count+1, normal_count=normal_count+1 WHERE id_agente=' . (int)$id_agente);
}
}
else {
echo '<h3 class="error">'.__('Error adding module').'</h3>';
else
$error_count++;
}
}
}
echo '<h3 class="suc">'.__('Modules successfully added ').'</h3>';
if ($error_count > 0) {
if (empty($modules_already_added))
ui_print_error_message(__('Error adding modules') . sprintf(' (%s)', $error_count));
else
ui_print_error_message(__('Error adding modules. The following errors already exists: ') . implode(', ', $modules_already_added));
}
if ($success_count > 0)
ui_print_success_message(__('Modules successfully added'));
}
// Main header