mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-25 00:56:49 +00:00
76 lines
3.7 KiB
PHP
Executable File
76 lines
3.7 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Advanced OpenReports, SugarCRM Reporting.
|
|
* @package Advanced OpenReports for SugarCRM
|
|
* @copyright SalesAgility Ltd http://www.salesagility.com
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
* along with this program; if not, see http://www.gnu.org/licenses
|
|
* or write to the Free Software Foundation,Inc., 51 Franklin Street,
|
|
* Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
* @author SalesAgility <info@salesagility.com>
|
|
*/
|
|
|
|
|
|
function display_field_lines($focus, $field, $value, $view)
|
|
{
|
|
global $mod_strings, $app_list_strings;
|
|
|
|
$html = '';
|
|
|
|
if (!is_file('cache/jsLanguage/AOR_Fields/' . $GLOBALS['current_language'] . '.js')) {
|
|
require_once('include/language/jsLanguage.php');
|
|
jsLanguage::createModuleStringsCache('AOR_Fields', $GLOBALS['current_language']);
|
|
}
|
|
|
|
$html .= '<script src="cache/jsLanguage/AOR_Fields/'. $GLOBALS['current_language'] . '.js"></script>';
|
|
|
|
if ($view == 'EditView') {
|
|
$html .= '<script src="modules/AOR_Fields/fieldLines.js"></script>';
|
|
$html .='<script></script>';
|
|
$html .= "<table border='0' cellspacing='4' width='100%' id='fieldLines'></table>";
|
|
|
|
$html .= "<div style='padding-top: 10px; padding-bottom:10px;'>";
|
|
$html .= "<input type=\"button\" tabindex=\"116\" class=\"button\" value=\"".$mod_strings['LBL_ADD_FIELD']."\" id=\"btn_FieldLine\" onclick=\"insertFieldLine()\" disabled/>";
|
|
$html .= "</div>";
|
|
$html .= "<script>";
|
|
$html .= "sort_by_values = \"".trim(preg_replace('/\s+/', ' ', (string) get_select_options_with_id($app_list_strings['aor_sort_operator'], '')))."\";";
|
|
$html .= "</script>";
|
|
|
|
if (isset($focus->report_module) && $focus->report_module != '') {
|
|
require_once("modules/AOW_WorkFlow/aow_utils.php");
|
|
$html .= "<script>";
|
|
$html .= "report_rel_modules = \"".trim(preg_replace('/\s+/', ' ', (string) getModuleRelationships($focus->report_module)))."\";";
|
|
$html .= "report_module = \"".$focus->report_module."\";";
|
|
$html .= "document.getElementById('btn_FieldLine').disabled = '';";
|
|
if ($focus->id != '') {
|
|
$sql = "SELECT id FROM aor_fields WHERE aor_report_id = '".$focus->id."' AND deleted = 0 ORDER BY field_order ASC";
|
|
$result = $focus->db->query($sql);
|
|
|
|
while ($row = $focus->db->fetchByAssoc($result)) {
|
|
$field_name = BeanFactory::newBean('AOR_Fields');
|
|
$field_name->retrieve($row['id']);
|
|
$field_name->module_path = unserialize(base64_decode($field_name->module_path));
|
|
$html .= "report_fields = \"".trim(preg_replace('/\s+/', ' ', (string) getModuleFields(getRelatedModule($focus->report_module, $field_name->module_path[0]))))."\";";
|
|
$field_item = json_encode($field_name->toArray());
|
|
$html .= "loadFieldLine(".$field_item.");";
|
|
}
|
|
}
|
|
$html .= "report_fields = \"".trim(preg_replace('/\s+/', ' ', (string) getModuleFields($focus->report_module)))."\";";
|
|
$html .= "</script>";
|
|
}
|
|
}
|
|
return $html;
|
|
}
|