mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-08-16 07:18:36 +02:00
#12687 Added message prd
This commit is contained in:
parent
af334e21be
commit
5bc20f9768
@ -1,497 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Resources exportation view.
|
||||
*
|
||||
* @category Extensions.
|
||||
* @package Pandora FMS
|
||||
* @subpackage Community
|
||||
* @version 1.0.0
|
||||
* @license See below
|
||||
*
|
||||
* ______ ___ _______ _______ ________
|
||||
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
||||
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
||||
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
||||
*
|
||||
* ============================================================================
|
||||
* Copyright (c) 2005-2023 Pandora FMS
|
||||
* Please see https://pandorafms.com/community/ for full contribution list
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation for version 2.
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
* ============================================================================
|
||||
*/
|
||||
|
||||
// Load global vars.
|
||||
if (isset($_GET['get_ptr'])) {
|
||||
if ($_GET['get_ptr'] == 1) {
|
||||
$ownDir = dirname(__FILE__).'/';
|
||||
$ownDir = str_replace('\\', '/', $ownDir);
|
||||
|
||||
// Don't start a session before this import.
|
||||
// The session is configured and started inside the config process.
|
||||
include_once $ownDir.'../include/config.php';
|
||||
|
||||
// Login check
|
||||
if (!isset($_SESSION['id_usuario'])) {
|
||||
$config['id_user'] = null;
|
||||
} else {
|
||||
$config['id_user'] = $_SESSION['id_usuario'];
|
||||
}
|
||||
|
||||
|
||||
if (! check_acl($config['id_user'], 0, 'PM') && ! is_user_admin($config['id_user'])) {
|
||||
db_pandora_audit(
|
||||
AUDIT_LOG_ACL_VIOLATION,
|
||||
'Trying to access Setup Management'
|
||||
);
|
||||
include 'general/noaccess.php';
|
||||
return;
|
||||
}
|
||||
|
||||
$hook_enterprise = enterprise_include('extensions/resource_exportation/functions.php');
|
||||
|
||||
header('Content-type: binary');
|
||||
header('Content-Disposition: attachment; filename="'.get_name_xml_resource($hook_enterprise)).'"';
|
||||
header('Pragma: no-cache');
|
||||
header('Expires: 0');
|
||||
|
||||
output_xml_resource($hook_enterprise);
|
||||
}
|
||||
} else {
|
||||
extensions_add_godmode_menu_option(__('Resource exportation'), 'PM', 'gagente', '', 'v1r1');
|
||||
extensions_add_godmode_function('resource_exportation_extension_main');
|
||||
}
|
||||
|
||||
|
||||
function output_xml_resource($hook_enterprise)
|
||||
{
|
||||
global $config;
|
||||
|
||||
$type = get_parameter('type');
|
||||
$id = (int) get_parameter('id');
|
||||
|
||||
switch ($type) {
|
||||
case 'report':
|
||||
output_xml_report($id);
|
||||
break;
|
||||
|
||||
case 'visual_console':
|
||||
output_xml_visual_console($id);
|
||||
break;
|
||||
|
||||
default:
|
||||
if ($hook_enterprise === true) {
|
||||
$include_agents = get_parameter('include_agents', 0);
|
||||
return enterprise_output_xml_resource($type, $id, $include_agents);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function output_xml_report($id)
|
||||
{
|
||||
global $config;
|
||||
|
||||
include_once $config['homedir'].'/include/functions_agents.php';
|
||||
|
||||
$report = db_get_row('treport', 'id_report', $id);
|
||||
|
||||
echo '<?xml version="1.0" encoding="UTF-8" ?>'."\n";
|
||||
echo "<report>\n";
|
||||
echo '<name><![CDATA['.io_safe_output($report['name'])."]]></name>\n";
|
||||
if (isset($report['description'])) {
|
||||
echo '<description><![CDATA['.io_safe_output($report['description'])."]]></description>\n";
|
||||
}
|
||||
|
||||
$group = db_get_value('nombre', 'tgrupo', 'id_grupo', $report['id_group']);
|
||||
echo '<group><![CDATA['.io_safe_output($group)."]]></group>\n";
|
||||
$items = db_get_all_rows_field_filter(
|
||||
'treport_content',
|
||||
'id_report',
|
||||
$report['id_report']
|
||||
);
|
||||
foreach ($items as $item) {
|
||||
echo "<item>\n";
|
||||
echo '<type>'.io_safe_output($item['type'])."</type>\n";
|
||||
echo '<description>'.io_safe_output($item['description'])."</description>\n";
|
||||
echo '<period>'.io_safe_output($item['period'])."</period>\n";
|
||||
if ($item['id_agent'] != 0) {
|
||||
$agent = db_get_value('alias', 'tagente', 'id_agente', $item['id_agent']);
|
||||
}
|
||||
|
||||
if ($item['id_agent_module'] != 0) {
|
||||
$module = db_get_value('nombre', 'tagente_modulo', 'id_agente_modulo', $item['id_agent_module']);
|
||||
$id_agent = db_get_value('id_agente', 'tagente_modulo', 'id_agente_modulo', $item['id_agent_module']);
|
||||
$agent = db_get_value('alias', 'tagente', 'id_agente', $item['id_agent']);
|
||||
|
||||
echo '<module><![CDATA['.io_safe_output($module)."]]></module>\n";
|
||||
}
|
||||
|
||||
if (isset($agent)) {
|
||||
echo '<agent><![CDATA['.$agent."]]></agent>\n";
|
||||
}
|
||||
|
||||
$agent = null;
|
||||
switch (io_safe_output($item['type'])) {
|
||||
case 2:
|
||||
case 'custom_graph':
|
||||
case 'automatic_custom_graph':
|
||||
$graph = db_get_value('name', 'tgraph', 'id_graph', $item['id_gs']);
|
||||
echo '<graph><![CDATA['.io_safe_output($graph)."]]></graph>\n";
|
||||
break;
|
||||
|
||||
case 3:
|
||||
case 'SLA':
|
||||
echo '<only_display_wrong>'.$item['only_display_wrong']."</only_display_wrong>\n";
|
||||
echo '<monday>'.$item['monday']."</monday>\n";
|
||||
echo '<tuesday>'.$item['tuesday']."</tuesday>\n";
|
||||
echo '<wednesday>'.$item['wednesday']."</wednesday>\n";
|
||||
echo '<thursday>'.$item['thursday']."</thursday>\n";
|
||||
echo '<friday>'.$item['friday']."</friday>\n";
|
||||
echo '<saturday>'.$item['saturday']."</saturday>\n";
|
||||
echo '<sunday>'.$item['sunday']."</sunday>\n";
|
||||
echo '<time_from>'.$item['time_from']."</time_from>\n";
|
||||
echo '<time_to>'.$item['time_to']."</time_to>\n";
|
||||
|
||||
$slas = db_get_all_rows_field_filter('treport_content_sla_combined', 'id_report_content', $item['id_rc']);
|
||||
if ($slas === false) {
|
||||
$slas = [];
|
||||
}
|
||||
|
||||
foreach ($slas as $sla) {
|
||||
$module = db_get_value('nombre', 'tagente_modulo', 'id_agente_modulo', $sla['id_agent_module']);
|
||||
$id_agent = db_get_value('id_agente', 'tagente_modulo', 'id_agente_modulo', $sla['id_agent_module']);
|
||||
$agent = db_get_value('alias', 'tagente', 'id_agente', $item['id_agent']);
|
||||
echo '<sla>';
|
||||
echo '<agent><![CDATA['.$agent."]]></agent>\n";
|
||||
echo '<module><![CDATA['.io_safe_output($module)."]]></module>\n";
|
||||
echo '<sla_max>'.$sla['sla_max']."</sla_max>\n";
|
||||
echo '<sla_min>'.$sla['sla_min']."</sla_min>\n";
|
||||
echo '<sla_limit>'.$sla['sla_limit']."</sla_limit>\n";
|
||||
echo '</sla>';
|
||||
}
|
||||
break;
|
||||
|
||||
case 'text':
|
||||
echo '<text><![CDATA['.io_safe_output($item['text'])."]]></text>\n";
|
||||
break;
|
||||
|
||||
case 'sql':
|
||||
echo '<header_definition><![CDATA['.io_safe_output($item['header_definition'])."]]></header_definition>\n";
|
||||
if (!empty($item['external_source'])) {
|
||||
echo '<sql><![CDATA['.io_safe_output($item['external_source'])."]]></sql>\n";
|
||||
} else {
|
||||
$sql = db_get_value('sql', 'treport_custom_sql', 'id', $item['treport_custom_sql_id']);
|
||||
echo '<sql>'.io_safe_output($sql)."</sql>\n";
|
||||
}
|
||||
break;
|
||||
|
||||
case 'sql_graph_pie':
|
||||
case 'sql_graph_vbar':
|
||||
case 'sql_graph_hbar':
|
||||
echo '<header_definition>'.io_safe_output($item['header_definition'])."</header_definition>\n";
|
||||
if (!empty($item['external_source'])) {
|
||||
echo '<sql>'.io_safe_output($item['external_source'])."</sql>\n";
|
||||
} else {
|
||||
$sql = db_get_value('sql', 'treport_custom_sql', 'id', $item['treport_custom_sql_id']);
|
||||
echo '<sql>'.io_safe_output($sql)."</sql>\n";
|
||||
}
|
||||
break;
|
||||
|
||||
case 'event_report_group':
|
||||
$group = db_get_value('nombre', 'tgrupo', 'id_grupo', $item['id_agent']);
|
||||
echo '<group><![CDATA['.io_safe_output($group)."]]></group>\n";
|
||||
break;
|
||||
|
||||
case 'url':
|
||||
echo '<url><![CDATA['.io_safe_output($values['external_source']).']]></url>';
|
||||
break;
|
||||
|
||||
case 'database_serialized':
|
||||
echo '<header_definition><![CDATA['.io_safe_output($item['header_definition']).']]></header_definition>';
|
||||
echo '<line_separator><![CDATA['.io_safe_output($item['line_separator']).']]></line_separator>';
|
||||
echo '<column_separator><![CDATA['.io_safe_output($item['header_definition']).']]></column_separator>';
|
||||
break;
|
||||
|
||||
case 1:
|
||||
case 'simple_graph':
|
||||
case 'simple_baseline_graph':
|
||||
case 6:
|
||||
case 'monitor_report':
|
||||
case 7:
|
||||
case 'avg_value':
|
||||
case 8:
|
||||
case 'max_value':
|
||||
case 9:
|
||||
case 'min_value':
|
||||
case 10:
|
||||
case 'sumatory':
|
||||
case 'agent_detailed_event':
|
||||
case 'event_report_agent':
|
||||
case 'event_report_module':
|
||||
case 'alert_report_module':
|
||||
case 'alert_report_agent':
|
||||
case 'alert_report_group':
|
||||
default:
|
||||
// Do nothing.
|
||||
break;
|
||||
}
|
||||
|
||||
echo "</item>\n";
|
||||
}
|
||||
|
||||
echo "</report>\n";
|
||||
}
|
||||
|
||||
|
||||
function output_xml_visual_console($id)
|
||||
{
|
||||
$visual_map = db_get_row('tlayout', 'id', $id);
|
||||
|
||||
echo '<?xml version="1.0" encoding="UTF-8" ?>'."\n";
|
||||
echo "<visual_map>\n";
|
||||
echo '<name><![CDATA['.io_safe_output($visual_map['name'])."]]></name>\n";
|
||||
if ($visual_map['id_group'] != 0) {
|
||||
$group = db_get_value('nombre', 'tgrupo', 'id_grupo', $visual_map['id_group']);
|
||||
echo '<group><![CDATA['.io_safe_output($group)."]]></group>\n";
|
||||
}
|
||||
|
||||
echo '<background><![CDATA['.io_safe_output($visual_map['background'])."]]></background>\n";
|
||||
echo '<height>'.io_safe_output($visual_map['height'])."</height>\n";
|
||||
echo '<width>'.io_safe_output($visual_map['width'])."</width>\n";
|
||||
$items = db_get_all_rows_field_filter('tlayout_data', 'id_layout', $visual_map['id']);
|
||||
if ($items === false) {
|
||||
$items = [];
|
||||
}
|
||||
|
||||
foreach ($items as $item) {
|
||||
echo "<item>\n";
|
||||
echo '<other_id>'.$item['id']."</other_id>\n";
|
||||
// OLD ID USE FOR parent item
|
||||
$agent = '';
|
||||
if ($item['id_agent'] != 0) {
|
||||
$agent = db_get_value('nombre', 'tagente', 'id_agente', $item['id_agent']);
|
||||
}
|
||||
|
||||
if (!empty($item['label'])) {
|
||||
echo '<label><![CDATA['.io_safe_output($item['label'])."]]></label>\n";
|
||||
}
|
||||
|
||||
echo '<x>'.$item['pos_x']."</x>\n";
|
||||
echo '<y>'.$item['pos_y']."</y>\n";
|
||||
echo '<type>'.$item['type']."</type>\n";
|
||||
if ($item['width'] != 0) {
|
||||
echo '<width>'.$item['width']."</width>\n";
|
||||
}
|
||||
|
||||
if ($item['height'] != 0) {
|
||||
echo '<height>'.$item['height']."</height>\n";
|
||||
}
|
||||
|
||||
if (!empty($item['image'])) {
|
||||
echo '<image>'.$item['image']."</image>\n";
|
||||
}
|
||||
|
||||
if ($item['period'] != 0) {
|
||||
echo '<period>'.$item['period']."</period>\n";
|
||||
}
|
||||
|
||||
if (isset($item['id_agente_modulo'])) {
|
||||
if ($item['id_agente_modulo'] != 0) {
|
||||
$module = db_get_value('nombre', 'tagente_modulo', 'id_agente_modulo', $item['id_agente_modulo']);
|
||||
$id_agent = db_get_value('id_agente', 'tagente_modulo', 'id_agente_modulo', $item['id_agente_modulo']);
|
||||
$agent = db_get_value('nombre', 'tagente', 'id_agente', $id_agent);
|
||||
|
||||
echo '<module><![CDATA['.io_safe_output($module)."]]></module>\n";
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($agent)) {
|
||||
echo '<agent><![CDATA['.$agent."]]></agent>\n";
|
||||
}
|
||||
|
||||
if ($item['id_layout_linked'] != 0) {
|
||||
echo '<id_layout_linked>'.$item['id_layout_linked']."</id_layout_linked>\n";
|
||||
}
|
||||
|
||||
if ($item['parent_item'] != 0) {
|
||||
echo '<parent_item>'.$item['parent_item']."</parent_item>\n";
|
||||
}
|
||||
|
||||
if (!empty($item['clock_animation'])) {
|
||||
echo '<clock_animation>'.$item['clock_animation']."</clock_animation>\n";
|
||||
}
|
||||
|
||||
if (!empty($item['fill_color'])) {
|
||||
echo '<fill_color>'.$item['fill_color']."</fill_color>\n";
|
||||
}
|
||||
|
||||
if (!empty($item['type_graph'])) {
|
||||
echo '<type_graph>'.$item['type_graph']."</type_graph>\n";
|
||||
}
|
||||
|
||||
if (!empty($item['time_format'])) {
|
||||
echo '<time_format>'.$item['time_format']."</time_format>\n";
|
||||
}
|
||||
|
||||
if (!empty($item['timezone'])) {
|
||||
echo '<timezone>'.$item['timezone']."</timezone>\n";
|
||||
}
|
||||
|
||||
if (!empty($item['border_width'])) {
|
||||
echo '<border_width>'.$item['border_width']."</border_width>\n";
|
||||
}
|
||||
|
||||
if (!empty($item['border_color'])) {
|
||||
echo '<border_color>'.$item['border_color']."</border_color>\n";
|
||||
}
|
||||
|
||||
echo "</item>\n";
|
||||
}
|
||||
|
||||
echo "</visual_map>\n";
|
||||
}
|
||||
|
||||
|
||||
function get_name_xml_resource($hook_enterprise)
|
||||
{
|
||||
global $config;
|
||||
|
||||
$type = get_parameter('type');
|
||||
$id = (int) get_parameter('id');
|
||||
|
||||
switch ($type) {
|
||||
case 'report':
|
||||
$name = db_get_value('name', 'treport', 'id_report', $id);
|
||||
break;
|
||||
|
||||
case 'visual_console':
|
||||
$name = db_get_value('name', 'tlayout', 'id', $id);
|
||||
break;
|
||||
|
||||
default:
|
||||
if ($hook_enterprise === true) {
|
||||
return enterprise_get_name_xml_resource($type, $id);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
$file = io_safe_output($name).'.ptr';
|
||||
|
||||
return $file;
|
||||
}
|
||||
|
||||
|
||||
function get_xml_resource()
|
||||
{
|
||||
global $config;
|
||||
|
||||
$hook_enterprise = enterprise_include('extensions/resource_exportation/functions.php');
|
||||
}
|
||||
|
||||
|
||||
function resource_exportation_extension_main()
|
||||
{
|
||||
global $config;
|
||||
|
||||
check_login();
|
||||
|
||||
if (! check_acl($config['id_user'], 0, 'PM') && ! is_user_admin($config['id_user'])) {
|
||||
db_pandora_audit(
|
||||
AUDIT_LOG_ACL_VIOLATION,
|
||||
'Trying to access Setup Management'
|
||||
);
|
||||
include 'general/noaccess.php';
|
||||
return;
|
||||
}
|
||||
|
||||
$hook_enterprise = enterprise_include('extensions/resource_exportation/functions.php');
|
||||
|
||||
ui_print_standard_header(
|
||||
__('Resource exportation'),
|
||||
'images/extensions.png',
|
||||
false,
|
||||
'',
|
||||
true,
|
||||
[],
|
||||
[
|
||||
[
|
||||
'link' => '',
|
||||
'label' => __('Resources'),
|
||||
],
|
||||
[
|
||||
'link' => '',
|
||||
'label' => __('Resource exporting'),
|
||||
],
|
||||
]
|
||||
);
|
||||
|
||||
ui_print_warning_message(
|
||||
__('This extension makes exportation of resource template more easy.').'<br>'.__('You can export resource templates in .ptr format.')
|
||||
);
|
||||
|
||||
$table = new stdClass();
|
||||
$table->class = 'databox filter-table-adv';
|
||||
$table->id = 'resource_exportation_table';
|
||||
$table->style = [];
|
||||
$table->style[0] = 'width: 30%';
|
||||
$table->style[1] = 'vertical-align: bottom;';
|
||||
$table->data = [];
|
||||
$table->data[0][] = html_print_label_input_block(
|
||||
__('Report'),
|
||||
html_print_div(
|
||||
[
|
||||
'class' => 'flex-content-left',
|
||||
'content' => html_print_select_from_sql('SELECT id_report, name FROM treport', 'report', '', '', '', 0, true),
|
||||
],
|
||||
true
|
||||
)
|
||||
);
|
||||
$table->data[0][] = html_print_button(__('Export'), '', false, 'export_to_ptr("report");', '', true);
|
||||
|
||||
$table->data[1][] = html_print_label_input_block(
|
||||
__('Visual console'),
|
||||
html_print_div(
|
||||
[
|
||||
'class' => 'flex-content-left',
|
||||
'content' => html_print_select_from_sql('SELECT id, name FROM tlayout', 'visual_console', '', '', '', 0, true),
|
||||
],
|
||||
true
|
||||
)
|
||||
);
|
||||
$table->data[1][] = html_print_button(__('Export'), '', false, 'export_to_ptr("visual_console");', '', true);
|
||||
|
||||
if ($hook_enterprise === true) {
|
||||
add_rows_for_enterprise($table->data);
|
||||
}
|
||||
|
||||
html_print_table($table);
|
||||
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
function export_to_ptr(type) {
|
||||
id = $("select#" + type + " option:selected").val();
|
||||
url = location.href.split('index');
|
||||
if (type == "policy") {
|
||||
var include_agents = $("#checkbox-export_agents").prop("checked")
|
||||
|
||||
url = url[0] + 'extensions/resource_exportation.php?get_ptr=1&type=' + type
|
||||
+ '&id=' + id + '&include_agents=' + include_agents;
|
||||
}
|
||||
else {
|
||||
url = url[0] + 'extensions/resource_exportation.php?get_ptr=1&type=' + type
|
||||
+ '&id=' + id;
|
||||
}
|
||||
|
||||
location.href=url;
|
||||
}
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1736,3 +1736,5 @@ extensions/files_repo/sql/files_repo.oracle.sql
|
||||
extensions/files_repo/sql/files_repo.postgreSQL.sql
|
||||
extensions/files_repo/sql/files_repo.sql
|
||||
extensions/files_repo
|
||||
extensions/resource_exportation.php
|
||||
extensions/resource_registration.php
|
||||
|
@ -42,6 +42,7 @@ if (check_acl($config['id_user'], 0, 'PM') === false) {
|
||||
}
|
||||
|
||||
require_once $config['homedir'].'/include/class/Prd.class.php';
|
||||
$msg = '';
|
||||
|
||||
// Instance of the prd class.
|
||||
$prd = new Prd();
|
||||
@ -50,11 +51,17 @@ if (isset($_FILES['resource_import']) === true) {
|
||||
$data = parse_ini_file($_FILES['resource_import']['tmp_name'], true);
|
||||
if ($data !== false) {
|
||||
$msg = $prd->importPrd($data);
|
||||
$array_msg = [];
|
||||
foreach ($msg['items'] as $key => $value) {
|
||||
$array_msg[$value[0]][key($value[1])][$value[1][key($value[1])]] = $value[1][key($value[1])];
|
||||
}
|
||||
|
||||
$msg['items'] = $array_msg;
|
||||
} else {
|
||||
$msg = [
|
||||
'status' => false,
|
||||
'items' => [],
|
||||
'errors' => ['Unexpected error: Unable to parse PRD file.']
|
||||
'items' => [],
|
||||
'errors' => ['Unexpected error: Unable to parse PRD file.'],
|
||||
];
|
||||
}
|
||||
}
|
||||
@ -130,10 +137,48 @@ html_print_table($table);
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
let msg = <?php echo $msg; ?>;
|
||||
console.log(msg);
|
||||
// if (Object.keys(msg).lenght === 0) {
|
||||
if (typeof msg === 'object' && Object.keys(msg).length > 0) {
|
||||
let title = "";
|
||||
let message = "";
|
||||
if (msg.status === true) {
|
||||
title = "<?php echo __('Resource successfully imported'); ?>";
|
||||
message = "<?php echo __('List of items created:'); ?>";
|
||||
message += "<br>";
|
||||
Object.entries(msg.items).forEach(([table, value]) => {
|
||||
message += table + " ";
|
||||
Object.entries(value).forEach(([field, value2]) => {
|
||||
message += "with " + field + ": (";
|
||||
if (typeof value2 === 'object' && Object.keys(value2).length > 0) {
|
||||
let cont = 0;
|
||||
Object.entries(value2).forEach(([key3, value3]) => {
|
||||
message += value3 + " , ";
|
||||
if (cont === 6) {
|
||||
message += "<br>";
|
||||
}
|
||||
cont++;
|
||||
});
|
||||
}
|
||||
});
|
||||
message = message.substring(0, message.length - 3);
|
||||
message += ")";
|
||||
message += "<br>";
|
||||
});
|
||||
|
||||
// }
|
||||
} else {
|
||||
title = "<?php echo __('Import error'); ?>";
|
||||
Object.entries(msg.errors).forEach(([key, value]) => {
|
||||
message += value + "<br>";
|
||||
});
|
||||
}
|
||||
|
||||
confirmDialog({
|
||||
title: title,
|
||||
message: message,
|
||||
hideCancelButton: true
|
||||
},
|
||||
"ResultDialog"
|
||||
);
|
||||
}
|
||||
|
||||
$("#export_type").change(function(e) {
|
||||
if ($(this).val() === '0') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user