Files
crm.e5.pl/include/generic/Save2.php

227 lines
9.2 KiB
PHP
Raw Normal View History

2024-04-27 09:23:34 +02:00
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* SugarCRM is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* 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 Affero 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.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
* technical reasons, the Appropriate Legal Notices must display the words
* "Powered by SugarCRM".
********************************************************************************/
/*********************************************************************************
* Description: TODO: To be written.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
* All Rights Reserved.
* Contributor(s): ______________________________________..
********************************************************************************/
/*
ARGS:
$_REQUEST['method']; : options: 'SaveRelationship','Save','DeleteRelationship','Delete'
$_REQUEST['module']; : the module associated with this Bean instance (will be used to get the class name)
$_REQUEST['record']; : the id of the Bean instance
// $_REQUEST['related_field']; : the field name on the Bean instance that contains the relationship
// $_REQUEST['related_record']; : the id of the related record
// $_REQUEST['related_']; : the
// $_REQUEST['return_url']; : the URL to redirect to
//$_REQUEST['return_type']; : when set the results of a report will be linked with the parent.
*/
require_once('include/formbase.php');
function add_prospects_to_prospect_list($query,$parent_module,$parent_type,$parent_id,$child_id,$link_attribute,$link_type) {
$GLOBALS['log']->debug('add_prospects_to_prospect_list:parameters:'.$query);
$GLOBALS['log']->debug('add_prospects_to_prospect_list:parameters:'.$parent_module);
$GLOBALS['log']->debug('add_prospects_to_prospect_list:parameters:'.$parent_type);
$GLOBALS['log']->debug('add_prospects_to_prospect_list:parameters:'.$parent_id);
$GLOBALS['log']->debug('add_prospects_to_prospect_list:parameters:'.$child_id);
$GLOBALS['log']->debug('add_prospects_to_prospect_list:parameters:'.$link_attribute);
$GLOBALS['log']->debug('add_prospects_to_prospect_list:parameters:'.$link_type);
if (!class_exists($parent_type)) {
require_once('modules/'.$parent_module.'/'.$parent_type.'.php');
}
$focus = new $parent_type();
$focus->retrieve($parent_id);
//if link_type is default then load relationship once and add all the child ids.
$relationship_attribute=$link_attribute;
//find all prospects based on the query
$db = DBManagerFactory::getInstance();
$result=$db->query($query);
while(($row=$db->fetchByAssoc($result)) != null) {
$GLOBALS['log']->debug('target_id'.$row[$child_id]);
if ($link_type != 'default') {
$relationship_attribute=strtolower($row[$link_attribute]);
}
$GLOBALS['log']->debug('add_prospects_to_prospect_list:relationship_attribute:'.$relationship_attribute);
//load relationship for the first time or on change of relationship atribute.
if (empty($focus->$relationship_attribute)) {
$focus->load_relationship($relationship_attribute);
}
//add
$focus->$relationship_attribute->add($row[$child_id]);
}
}
//Link rows returned by a report to parent record.
function save_from_report($report_id,$parent_id, $module_name, $relationship_attr_name) {
global $beanFiles;
global $beanList;
$GLOBALS['log']->debug("Save2: Linking with report output");
$GLOBALS['log']->debug("Save2:Report ID=".$report_id);
$GLOBALS['log']->debug("Save2:Parent ID=".$parent_id);
$GLOBALS['log']->debug("Save2:Module Name=".$module_name);
$GLOBALS['log']->debug("Save2:Relationship Attribute Name=".$relationship_attr_name);
$bean_name = $beanList[$module_name];
$GLOBALS['log']->debug("Save2:Bean Name=".$bean_name);
require_once($beanFiles[$bean_name]);
$focus = new $bean_name();
$focus->retrieve($parent_id);
$focus->load_relationship($relationship_attr_name);
//fetch report definition.
global $current_language, $report_modules, $modules_report;
$mod_strings = return_module_language($current_language,"Reports");
$saved = new SavedReport();
$saved->disable_row_level_security = true;
$saved->retrieve($report_id, false);
//initiailize reports engine with the report definition.
require_once('modules/Reports/Report.php');
$report = new Report($saved->content);
$report->run_query();
$sql = $report->query_list[0];
$GLOBALS['log']->debug("Save2:Report Query=".$sql);
$result = $report->db->query($sql);
while($row = $report->db->fetchByAssoc($result))
{
$focus->$relationship_attr_name->add($row['primaryid']);
}
}
$refreshsubpanel=true;
if (isset($_REQUEST['return_type']) && $_REQUEST['return_type'] == 'report') {
save_from_report($_REQUEST['subpanel_id'] //report_id
,$_REQUEST['record'] //parent_id
,$_REQUEST['module'] //module_name
,$_REQUEST['subpanel_field_name'] //link attribute name
);
} else if (isset($_REQUEST['return_type']) && $_REQUEST['return_type'] == 'addtoprospectlist') {
$GLOBALS['log']->debug(print_r($_REQUEST,true));
add_prospects_to_prospect_list(urldecode($_REQUEST['query']),$_REQUEST['parent_module'],$_REQUEST['parent_type'],$_REQUEST['subpanel_id'],
$_REQUEST['child_id'],$_REQUEST['link_attribute'],$_REQUEST['link_type']);
$refreshsubpanel=false;
}else if (isset($_REQUEST['return_type']) && $_REQUEST['return_type'] == 'addcampaignlog') {
//if param is set to "addcampaignlog", then we need to create a campaign log entry
//for each campaign id passed in.
//get list of campaign's selected'
if (isset($_REQUEST['subpanel_id']) && !empty($_REQUEST['subpanel_id'])) {
$campaign_ids = $_REQUEST['subpanel_id'];
global $beanFiles;
global $beanList;
//retrieve current bean
$bean_name = $beanList[$_REQUEST['module']];
require_once($beanFiles[$bean_name]);
$focus = new $bean_name();
$focus->retrieve($_REQUEST['record']);
require_once('modules/Campaigns/utils.php');
//call util function to create the campaign log entry
foreach($campaign_ids as $id){
create_campaign_log_entry($id, $focus, $focus->module_dir,$focus, $focus->id);
}
$refreshsubpanel=true;
}
}
else {
global $beanFiles,$beanList;
$bean_name = $beanList[$_REQUEST['module']];
require_once($beanFiles[$bean_name]);
$focus = new $bean_name();
$focus->retrieve($_REQUEST['record']);
if($bean_name == 'Team'){
$subpanel_id = $_REQUEST['subpanel_id'];
if(is_array($subpanel_id)){
foreach($subpanel_id as $id){
$focus->add_user_to_team($id);
}
}
else{
$focus->add_user_to_team($subpanel_id);
}
} else{
//find request paramters with with prefix of REL_ATTRIBUTE_
//convert them into an array of name value pairs add pass them as
//parameters to the add metod.
$add_values =array();
foreach ($_REQUEST as $key=>$value) {
if (strpos($key,"REL_ATTRIBUTE_") !== false) {
$add_values[substr($key,14)]=$value;
}
}
$focus->load_relationship($_REQUEST['subpanel_field_name']);
$focus->$_REQUEST['subpanel_field_name']->add($_REQUEST['subpanel_id'],$add_values);
}
}
if ($refreshsubpanel) {
//refresh contents of the sub-panel.
$GLOBALS['log']->debug("Location: index.php?sugar_body_only=1&module=".$_REQUEST['module']."&subpanel=".$_REQUEST['subpanel_module_name']."&action=SubPanelViewer&inline=1&record=".$_REQUEST['record']);
if( empty($_REQUEST['refresh_page']) || $_REQUEST['refresh_page'] != 1){
$inline = isset($_REQUEST['inline'])?$_REQUEST['inline']: $inline;
header("Location: index.php?sugar_body_only=1&module=".$_REQUEST['module']."&subpanel=".$_REQUEST['subpanel_module_name']."&action=SubPanelViewer&inline=$inline&record=".$_REQUEST['record']);
}
}
exit;
?>