vtigerossez/modules/Leads/DetailView.php

204 lines
7.9 KiB
PHP
Raw Permalink Normal View History

<?php
/*********************************************************************************
* The contents of this file are subject to the SugarCRM Public License Version 1.1.2
* ("License"); You may not use this file except in compliance with the
* License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
* The Original Code is: SugarCRM Open Source
* The Initial Developer of the Original Code is SugarCRM, Inc.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.;
* All Rights Reserved.
* Contributor(s): ______________________________________.
********************************************************************************/
require_once('Smarty_setup.php');
require_once('data/Tracker.php');
require_once('include/CustomFieldUtil.php');
require_once('include/utils/utils.php');
require_once('include/utils/UserInfoUtil.php');
require_once('user_privileges/default_module_view.php');
global $mod_strings;
global $app_strings;
global $currentModule, $singlepane_view, $current_user;
global $log;
$focus = CRMEntity::getInstance($currentModule);
if (isset($_REQUEST['record'])) {
$focus->id = $_REQUEST['record'];
$focus->retrieve_entity_info($_REQUEST['record'], "Leads");
$focus->id = $_REQUEST['record'];
$log->debug("id is " . $focus->id);
$focus->firstname = $focus->column_fields['firstname'];
$focus->lastname = $focus->column_fields['lastname'];
}
if (isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') {
$focus->id = "";
}
global $theme, $current_user;
$theme_path = "themes/" . $theme . "/";
$image_path = $theme_path . "images/";
$log->info("Lead detail view");
$smarty = new vtigerCRM_Smarty;
$smarty->assign("MOD", $mod_strings);
$smarty->assign("APP", $app_strings);
$smarty->assign("THEME", $theme);
$smarty->assign("IMAGE_PATH", $image_path);
$smarty->assign("PRINT_URL", "phprint.php?jt=" . session_id() . $GLOBALS['request_string']);
$smarty->assign("ID", $focus->id);
// Module Sequence Numbering
$mod_seq_field = getModuleSequenceField($currentModule);
if ($mod_seq_field != null) {
$mod_seq_id = $focus->column_fields[$mod_seq_field['name']];
} else {
$mod_seq_id = $focus->id;
}
$smarty->assign('MOD_SEQ_ID', $mod_seq_id);
// END
$smarty->assign("SINGLE_MOD", 'Lead');
$lead_name = $focus->lastname;
if (getFieldVisibilityPermission($currentModule, $current_user->id, 'firstname') == '0') {
$lead_name .= ' ' . $focus->firstname;
}
$smarty->assign("NAME", $lead_name);
$smarty->assign("UPDATEINFO", updateInfo($focus->id));
$smarty->assign("BLOCKS", getBlocks($currentModule, "detail_view", '', $focus->column_fields));
$smarty->assign("CUSTOMFIELD", $cust_fld);
if (useInternalMailer() == 1)
$smarty->assign("INT_MAILER", "true");
$val = isPermitted("Leads", "EditView", $_REQUEST['record']);
if (isPermitted("Leads", "EditView", $_REQUEST['record']) == 'yes')
$smarty->assign("EDIT_DUPLICATE", "permitted");
require_once 'modules/Leads/ConvertLeadUI.php';
$uiinfo = new ConvertLeadUI($_REQUEST['record'], $current_user);
if (isPermitted("Leads", "EditView", $_REQUEST['record']) == 'yes'
&& isPermitted("Leads", "ConvertLead") == 'yes'
&& (isPermitted("Accounts", "EditView") == 'yes' || isPermitted("Contacts", "EditView") == 'yes')
&& (vtlib_isModuleActive('Contacts') || vtlib_isModuleActive('Accounts'))
&& !isLeadConverted($focus->id)
&& (($uiinfo->getCompany() != null) || ($uiinfo->isModuleActive('Contacts') == true))
) {
$smarty->assign("CONVERTLEAD", "permitted");
}
$category = getParentTab();
$smarty->assign("CATEGORY", $category);
if (isPermitted("Leads", "Delete", $_REQUEST['record']) == 'yes')
$smarty->assign("DELETE", "permitted");
if (isPermitted("Emails", "EditView", '') == 'yes') {
//Added to pass the parents list as hidden for Emails -- 09-11-2005
$parent_email = getEmailParentsList('Leads', $_REQUEST['record'], $focus);
$smarty->assign("HIDDEN_PARENTS_LIST", $parent_email);
$vtwsObject = VtigerWebserviceObject::fromName($adb, $currentModule);
$vtwsCRMObjectMeta = new VtigerCRMObjectMeta($vtwsObject, $current_user);
$emailFields = $vtwsCRMObjectMeta->getEmailFields();
$smarty->assign("SENDMAILBUTTON","permitted");
$emails=array();
foreach($emailFields as $key => $value) {
$emails[]=$value;
}
$smarty->assign("EMAILS", $emails);
$cond="LTrim('%s') !=''";
$condition=array();
foreach($emails as $key => $value) {
$condition[]=sprintf($cond,$value);
}
$condition_str=implode("||",$condition);
$js="if(".$condition_str."){fnvshobj(this,'sendmail_cont');sendmail('".$currentModule."',".$_REQUEST['record'].");}else{OpenCompose('','create');}";
$smarty->assign('JS',$js);
}
if (isPermitted("Leads", "Merge", '') == 'yes') {
global $current_user;
require("user_privileges/user_privileges_" . $current_user->id . ".php");
$wordTemplateResult = fetchWordTemplateList("Leads");
$tempCount = $adb->num_rows($wordTemplateResult);
$tempVal = $adb->fetch_array($wordTemplateResult);
for ($templateCount = 0; $templateCount < $tempCount; $templateCount++) {
$optionString[$tempVal["templateid"]] = $tempVal["filename"];
$tempVal = $adb->fetch_array($wordTemplateResult);
}
if ($is_admin)
$smarty->assign("MERGEBUTTON", "permitted");
elseif ($tempCount > 0)
$smarty->assign("MERGEBUTTON", "permitted");
$smarty->assign("TEMPLATECOUNT", $tempCount);
$smarty->assign("WORDTEMPLATEOPTIONS", $app_strings['LBL_SELECT_TEMPLATE_TO_MAIL_MERGE']);
$smarty->assign("TOPTIONS", $optionString);
}
$tabid = getTabid("Leads");
$validationData = getDBValidationData($focus->tab_name, $tabid);
$data = split_validationdataArray($validationData);
$smarty->assign("VALIDATION_DATA_FIELDNAME", $data['fieldname']);
$smarty->assign("VALIDATION_DATA_FIELDDATATYPE", $data['datatype']);
$smarty->assign("VALIDATION_DATA_FIELDLABEL", $data['fieldlabel']);
$check_button = Button_Check($module);
$smarty->assign("CHECK", $check_button);
$smarty->assign("MODULE", $currentModule);
$smarty->assign("EDIT_PERMISSION", isPermitted($currentModule, 'EditView', $_REQUEST['record']));
$smarty->assign("TODO_PERMISSION", CheckFieldPermission('parent_id', 'Calendar'));
$smarty->assign("EVENT_PERMISSION", CheckFieldPermission('parent_id', 'Events'));
$smarty->assign("IS_REL_LIST", isPresentRelatedLists($currentModule));
$smarty->assign("USE_ASTERISK", get_use_asterisk($current_user->id));
if ($singlepane_view == 'true') {
$related_array = getRelatedLists($currentModule, $focus);
$smarty->assign("RELATEDLISTS", $related_array);
require_once('include/ListView/RelatedListViewSession.php');
if (!empty($_REQUEST['selected_header']) && !empty($_REQUEST['selected_tab_id'])) {
RelatedListViewSession::addRelatedModuleToSession(vtlib_purify($_REQUEST['selected_tab_id']), vtlib_purify($_REQUEST['selected_header']));
}
$open_related_modules = RelatedListViewSession::getRelatedModulesFromSession();
$smarty->assign("SELECTEDHEADERS", $open_related_modules);
}
$smarty->assign("SinglePane_View", $singlepane_view);
if (PerformancePrefs::getBoolean('DETAILVIEW_RECORD_NAVIGATION', true) && isset($_SESSION[$currentModule . '_listquery'])) {
$recordNavigationInfo = ListViewSession::getListViewNavigation($focus->id);
VT_detailViewNavigation($smarty, $recordNavigationInfo, $focus->id);
}
// Record Change Notification
$focus->markAsViewed($current_user->id);
// END
include_once('vtlib/Vtiger/Link.php');
$customlink_params = Array('MODULE' => $currentModule, 'RECORD' => $focus->id, 'ACTION' => vtlib_purify($_REQUEST['action']));
$smarty->assign('CUSTOM_LINKS', Vtiger_Link::getAllByType(getTabid($currentModule), Array('DETAILVIEWBASIC', 'DETAILVIEW', 'DETAILVIEWWIDGET'), $customlink_params));
$smarty->assign('DETAILVIEW_AJAX_EDIT', PerformancePrefs::getBoolean('DETAILVIEW_AJAX_EDIT', true));
$smarty->display("DetailView.tpl");
?>