0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-22 07:52:36 +00:00
salesagility_SuiteCRM/modules/AOR_Reports/views/view.edit.php
2023-07-18 15:53:48 +01:00

144 lines
5.8 KiB
PHP

<?php
/**
*
*
* @package
* @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 Ltd <support@salesagility.com>
*/
require_once 'modules/AOW_WorkFlow/aow_utils.php';
require_once 'modules/AOR_Reports/aor_utils.php';
#[\AllowDynamicProperties]
class AOR_ReportsViewEdit extends ViewEdit
{
public function __construct()
{
parent::__construct();
}
public function preDisplay()
{
global $app_list_strings;
echo "<style type='text/css'>";
//readfile('modules/AOR_Reports/css/edit.css');
readfile('modules/AOR_Reports/js/jqtree/jqtree.css');
echo "</style>";
if (!is_file('cache/jsLanguage/AOR_Fields/' . $GLOBALS['current_language'] . '.js')) {
require_once('include/language/jsLanguage.php');
jsLanguage::createModuleStringsCache('AOR_Fields', $GLOBALS['current_language']);
}
echo '<script src="cache/jsLanguage/AOR_Fields/'. $GLOBALS['current_language'] . '.js"></script>';
if (!is_file('cache/jsLanguage/AOR_Conditions/' . $GLOBALS['current_language'] . '.js')) {
require_once('include/language/jsLanguage.php');
jsLanguage::createModuleStringsCache('AOR_Conditions', $GLOBALS['current_language']);
}
echo '<script src="cache/jsLanguage/AOR_Conditions/'. $GLOBALS['current_language'] . '.js"></script>';
echo "<script>";
echo "sort_by_values = \"".trim(preg_replace('/\s+/', ' ', (string) get_select_options_with_id($app_list_strings['aor_sort_operator'], '')))."\";";
echo "total_values = \"".trim(preg_replace('/\s+/', ' ', (string) get_select_options_with_id($app_list_strings['aor_total_options'], '')))."\";";
echo "format_values = \"".trim(preg_replace('/\s+/', ' ', (string) get_select_options_with_id($app_list_strings['aor_format_options'], '')))."\";";
echo "</script>";
$fields = $this->getFieldLines();
echo "<script>var fieldLines = ".json_encode($fields)."</script>";
$conditions = $this->getConditionLines();
echo "<script>var conditionLines = ".json_encode($conditions)."</script>";
$charts = $this->getChartLines();
echo "<script>var chartLines = ".json_encode($charts).";</script>";
parent::preDisplay();
}
private function getConditionLines()
{
if (!$this->bean->id) {
return array();
}
$sql = "SELECT id FROM aor_conditions WHERE aor_report_id = '".$this->bean->id."' AND deleted = 0 ORDER BY condition_order ASC";
$result = $this->bean->db->query($sql);
$conditions = array();
while ($row = $this->bean->db->fetchByAssoc($result)) {
$condition_name = BeanFactory::newBean('AOR_Conditions');
$condition_name->retrieve($row['id']);
if (!$condition_name->parenthesis) {
$condition_name->module_path = implode(":", unserialize(base64_decode($condition_name->module_path)));
}
if ($condition_name->value_type == 'Date') {
$condition_name->value = unserialize(base64_decode($condition_name->value));
}
$condition_item = $condition_name->toArray();
if (!$condition_name->parenthesis) {
$display = getDisplayForField($condition_name->module_path, $condition_name->field, $this->bean->report_module);
$condition_item['module_path_display'] = $display['module'];
$condition_item['field_label'] = $display['field'];
}
if (isset($conditions[$condition_item['condition_order']])) {
$conditions[] = $condition_item;
} else {
$conditions[$condition_item['condition_order']] = $condition_item;
}
}
return $conditions;
}
private function getFieldLines()
{
if (!$this->bean->id) {
return array();
}
$sql = "SELECT id FROM aor_fields WHERE aor_report_id = '".$this->bean->id."' AND deleted = 0 ORDER BY field_order ASC";
$result = $this->bean->db->query($sql);
$fields = array();
while ($row = $this->bean->db->fetchByAssoc($result)) {
$field_name = BeanFactory::newBean('AOR_Fields');
$field_name->retrieve($row['id']);
$field_name->module_path = implode(":", unserialize(base64_decode($field_name->module_path)));
$arr = $field_name->toArray();
$display = getDisplayForField($field_name->module_path, $field_name->field, $this->bean->report_module);
$arr['field_type'] = $display['type'];
$arr['module_path_display'] = $display['module'];
$arr['field_label'] = $display['field'];
$fields[] = $arr;
}
return $fields;
}
private function getChartLines()
{
$charts = array();
if (!$this->bean->id) {
return array();
}
foreach ($this->bean->get_linked_beans('aor_charts', 'AOR_Charts') as $chart) {
$charts[] = $chart->toArray();
}
return $charts;
}
}