mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 08:17:18 +08:00
4e205ecf45 SuiteCRM 7.13.1 Release c5da36210d Add new modules to unit tests 6321c09b68 Fix #9870 - Fix log level in ImapHandlerFactory 1a0710f537 Add option to enable legacy email compose behaviour eaff3e776e Remove option to allow user to send as themselves from configuration 7f9c743c78 Only display outbound and system accounts on email compose from de1b0f2ad8 Update email compose from dropdown ed30b7575c Allow email compose to send using outbound-only accounts d3a58bd3e0 Fix #9878 - Catch unhandled error in imap2_close cc80eabbfd Fix #9878 - Fix InboundEmail save trim error 9190b40c48 Fix #9878 - Fix InboundEmail save error 0db3827d98 Fix #9878 - Fix relate select popup white screen error e8af74ba7b Fix #9878 - Fix undefined index notice git-subtree-dir: public/legacy git-subtree-split: 4e205ecf45d493ad1351c51f8ce787fa1c6400c9
697 lines
29 KiB
PHP
Executable file
697 lines
29 KiB
PHP
Executable file
<?php
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
/**
|
|
*
|
|
* SugarCRM Community Edition is a customer relationship management program developed by
|
|
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
|
|
*
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
|
|
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
|
|
*
|
|
* 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 and "Supercharged by SuiteCRM" logo. If the display of the logos is not
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
|
*/
|
|
|
|
/*********************************************************************************
|
|
|
|
* Description: Base form for contact
|
|
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________..
|
|
********************************************************************************/
|
|
|
|
require_once('include/SugarObjects/forms/PersonFormBase.php');
|
|
|
|
class ContactFormBase extends PersonFormBase
|
|
{
|
|
public $moduleName = 'Contacts';
|
|
public $objectName = 'Contact';
|
|
|
|
/**
|
|
* getDuplicateQuery
|
|
*
|
|
* This function returns the SQL String used for initial duplicate Contacts check
|
|
*
|
|
* @see checkForDuplicates (method), ContactFormBase.php, LeadFormBase.php, ProspectFormBase.php
|
|
* @param $focus sugarbean
|
|
* @param $prefix String value of prefix that may be present in $_POST variables
|
|
* @return SQL String of the query that should be used for the initial duplicate lookup check
|
|
*/
|
|
public function getDuplicateQuery($focus, $prefix='')
|
|
{
|
|
$query = 'SELECT contacts.id, contacts.first_name, contacts.last_name, contacts.title FROM contacts ';
|
|
|
|
// Bug #46427 : Records from other Teams shown on Potential Duplicate Contacts screen during Lead Conversion
|
|
// add team security
|
|
|
|
$dbManager = DBManagerFactory::getInstance();
|
|
|
|
$query .= ' where contacts.deleted = 0 AND ';
|
|
if (isset($_POST[$prefix.'first_name']) && strlen($_POST[$prefix.'first_name']) != 0 && isset($_POST[$prefix.'last_name']) && strlen($_POST[$prefix.'last_name']) != 0) {
|
|
$firstName = $dbManager->quote($_POST[$prefix.'first_name' ?? '']);
|
|
$lastName = $dbManager->quote($_POST[$prefix.'last_name' ?? '']);
|
|
$query .= " contacts.first_name LIKE '". $firstName . "%' AND contacts.last_name = '". $lastName ."'";
|
|
} else {
|
|
$lastName = $dbManager->quote($_POST[$prefix.'last_name' ?? '']);
|
|
$query .= " contacts.last_name = '". $lastName ."'";
|
|
}
|
|
|
|
if (!empty($_POST[$prefix.'record'])) {
|
|
$record = $dbManager->quote($_POST[$prefix.'record' ?? '']);
|
|
$query .= " AND contacts.id != '". $record ."'";
|
|
}
|
|
return $query;
|
|
}
|
|
|
|
|
|
public function getWideFormBody($prefix, $mod='', $formname='', $contact = '', $portal = true)
|
|
{
|
|
if (!ACLController::checkAccess('Contacts', 'edit', true)) {
|
|
return '';
|
|
}
|
|
|
|
if (empty($contact)) {
|
|
$contact = $this->getContact();
|
|
}
|
|
|
|
global $mod_strings;
|
|
$temp_strings = $mod_strings;
|
|
if (!empty($mod)) {
|
|
global $current_language;
|
|
$mod_strings = return_module_language($current_language, $mod);
|
|
}
|
|
global $app_strings;
|
|
global $current_user;
|
|
global $app_list_strings;
|
|
$primary_address_country_options = get_select_options_with_id($app_list_strings['countries_dom'], $contact->primary_address_country);
|
|
$lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
|
|
$lbl_first_name = $mod_strings['LBL_FIRST_NAME'];
|
|
$lbl_last_name = $mod_strings['LBL_LAST_NAME'];
|
|
$lbl_phone = $mod_strings['LBL_OFFICE_PHONE'];
|
|
$lbl_address = $mod_strings['LBL_PRIMARY_ADDRESS'];
|
|
|
|
if (isset($contact->assigned_user_id)) {
|
|
$user_id=$contact->assigned_user_id;
|
|
} else {
|
|
$user_id = $current_user->id;
|
|
}
|
|
|
|
//Retrieve Email address and set email1, email2
|
|
$sugarEmailAddress = new SugarEmailAddress();
|
|
$sugarEmailAddress->handleLegacyRetrieve($contact);
|
|
if (!isset($contact->email1)) {
|
|
$contact->email1 = '';
|
|
}
|
|
if (!isset($contact->email2)) {
|
|
$contact->email2 = '';
|
|
}
|
|
if (!isset($contact->email_opt_out)) {
|
|
$contact->email_opt_out = '';
|
|
}
|
|
$lbl_email_address = $mod_strings['LBL_EMAIL_ADDRESS'];
|
|
$salutation_options=get_select_options_with_id($app_list_strings['salutation_dom'], $contact->salutation);
|
|
|
|
if (isset($contact->lead_source)) {
|
|
$lead_source_options=get_select_options_with_id($app_list_strings['lead_source_dom'], $contact->lead_source);
|
|
} else {
|
|
$lead_source_options=get_select_options_with_id($app_list_strings['lead_source_dom'], '');
|
|
}
|
|
|
|
$form="";
|
|
|
|
|
|
if ($formname == 'ConvertProspect') {
|
|
$lead_source_label = "<td scope='row'> </td>";
|
|
$lead_source_field = "<td > </td>";
|
|
} else {
|
|
$lead_source_label = "<td scope='row' nowrap>${mod_strings['LBL_LEAD_SOURCE']}</td>";
|
|
$lead_source_field = "<td ><select name='${prefix}lead_source'>$lead_source_options</select></td>";
|
|
}
|
|
|
|
|
|
global $timedate;
|
|
$birthdate = '';
|
|
if (!empty($_REQUEST['birthdate'])) {
|
|
$birthdate=$_REQUEST['birthdate'];
|
|
}
|
|
|
|
|
|
$ntc_date_format = $timedate->get_user_date_format();
|
|
$cal_dateformat = $timedate->get_cal_date_format();
|
|
$lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
|
|
|
|
$form .= <<<EOQ
|
|
<input type="hidden" name="${prefix}record" value="">
|
|
<input type="hidden" name="${prefix}assigned_user_id" value='${user_id}'>
|
|
<table border='0' celpadding="0" cellspacing="0" width='100%'>
|
|
<tr>
|
|
<td nowrap scope='row'>$lbl_first_name</td>
|
|
<td scope='row'>$lbl_last_name <span class="required">$lbl_required_symbol</span></td>
|
|
<td scope='row' nowrap>${mod_strings['LBL_TITLE']}</td>
|
|
<td scope='row' nowrap>${mod_strings['LBL_DEPARTMENT']}</td>
|
|
</tr>
|
|
<tr>
|
|
<td ><select name='${prefix}salutation'>$salutation_options</select> <input name="${prefix}first_name" type="text" value="{$contact->first_name}"></td>
|
|
<td ><input name='${prefix}last_name' type="text" value="{$contact->last_name}"></td>
|
|
<td nowrap><input name='${prefix}title' type="text" value="{$contact->title}"></td>
|
|
<td nowrap><input name='${prefix}department' type="text" value="{$contact->department}"></td>
|
|
</tr>
|
|
<tr>
|
|
<td nowrap colspan='4' scope='row'>$lbl_address</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td nowrap colspan='4' ><textarea cols='80' rows='2' name='${prefix}primary_address_street'>{$contact->primary_address_street}</textarea></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td scope='row'>${mod_strings['LBL_CITY']}</td>
|
|
<td scope='row'>${mod_strings['LBL_STATE']}</td>
|
|
<td scope='row'>${mod_strings['LBL_POSTAL_CODE']}</td>
|
|
<td scope='row'>${mod_strings['LBL_COUNTRY']}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td ><input name='${prefix}primary_address_city' maxlength='100' value='{$contact->primary_address_city}'></td>
|
|
<td ><input name='${prefix}primary_address_state' maxlength='100' value='{$contact->primary_address_state}'></td>
|
|
<td ><input name='${prefix}primary_address_postalcode' maxlength='100' value='{$contact->primary_address_postalcode}'></td>
|
|
<td ><input name='${prefix}primary_address_country' maxlength='100' value='{$contact->primary_address_country}'></td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td nowrap scope='row'>$lbl_phone</td>
|
|
<td nowrap scope='row'>${mod_strings['LBL_MOBILE_PHONE']}</td>
|
|
<td nowrap scope='row'>${mod_strings['LBL_FAX_PHONE']}</td>
|
|
<td nowrap scope='row'>${mod_strings['LBL_HOME_PHONE']}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td nowrap ><input name='${prefix}phone_work' type="text" value="{$contact->phone_work}"></td>
|
|
<td nowrap ><input name='${prefix}phone_mobile' type="text" value="{$contact->phone_mobile}"></td>
|
|
<td nowrap ><input name='${prefix}phone_fax' type="text" value="{$contact->phone_fax}"></td>
|
|
<td nowrap ><input name='${prefix}phone_home' type="text" value="{$contact->phone_home}"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td scope='row' nowrap>${mod_strings['LBL_OTHER_PHONE']}</td>
|
|
$lead_source_label
|
|
|
|
<td scope="row">${mod_strings['LBL_BIRTHDATE']} </td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td nowrap><input name='${prefix}phone_other' type="text" value="{$contact->phone_other}"></td>
|
|
$lead_source_field
|
|
|
|
<td nowrap>
|
|
<input name='{$prefix}birthdate' onblur="parseDate(this, '$cal_dateformat');" size='12' maxlength='10' id='${prefix}jscal_field' type="text" value="{$birthdate}">
|
|
<!--not_in_theme!--><span class="suitepicon suitepicon-module-calendar"></span>
|
|
</td>
|
|
</tr>
|
|
|
|
EOQ;
|
|
|
|
$form .= $sugarEmailAddress->getEmailAddressWidgetEditView($contact->id, $_REQUEST['action']=='ConvertLead'?'Leads':'Contacts', false, 'include/SugarEmailAddress/templates/forWideFormBodyView.tpl');
|
|
|
|
require_once('include/SugarFields/Fields/Text/SugarFieldText.php');
|
|
$sugarfield = new SugarFieldText('Text');
|
|
$description_text = $sugarfield->getClassicEditView('description', $contact->description, $prefix, true);
|
|
|
|
$form .= <<<EOQ
|
|
<tr>
|
|
<td nowrap colspan='4' scope='row'>${mod_strings['LBL_DESCRIPTION']}</td>
|
|
</tr>
|
|
<tr>
|
|
<td nowrap colspan='4' >{$description_text}</td>
|
|
</tr>
|
|
EOQ;
|
|
|
|
|
|
|
|
//carry forward custom lead fields common to contacts during Lead Conversion
|
|
$tempContact = $this->getContact();
|
|
|
|
if (method_exists($contact, 'convertCustomFieldsForm')) {
|
|
$contact->convertCustomFieldsForm($form, $tempContact, $prefix);
|
|
}
|
|
unset($tempContact);
|
|
|
|
$form .= <<<EOQ
|
|
</table>
|
|
|
|
<input type='hidden' name='${prefix}alt_address_street' value='{$contact->alt_address_street}'>
|
|
<input type='hidden' name='${prefix}alt_address_city' value='{$contact->alt_address_city}'><input type='hidden' name='${prefix}alt_address_state' value='{$contact->alt_address_state}'><input type='hidden' name='${prefix}alt_address_postalcode' value='{$contact->alt_address_postalcode}'><input type='hidden' name='${prefix}alt_address_country' value='{$contact->alt_address_country}'>
|
|
<input type='hidden' name='${prefix}do_not_call' value='{$contact->do_not_call}'>
|
|
<input type='hidden' name='${prefix}email_opt_out' value='{$contact->email_opt_out}'>
|
|
EOQ;
|
|
|
|
if ($portal == true) {
|
|
if (isset($contact->portal_name)) {
|
|
$form.="<input type='hidden' name='${prefix}portal_name' value='{$contact->portal_name}'>";
|
|
} else {
|
|
$form.="<input type='hidden' name='${prefix}portal_name' value=''>";
|
|
}
|
|
if (isset($contact->portal_app)) {
|
|
$form.="<input type='hidden' name='${prefix}portal_app' value='{$contact->portal_app}'>";
|
|
} else {
|
|
$form.="<input type='hidden' name='${prefix}portal_app' value=''>";
|
|
}
|
|
|
|
|
|
if (!empty($contact->portal_name) && !empty($contact->portal_app)) {
|
|
$form .= "<input name='${prefix}portal_active' type='hidden' size='25' value='1' >";
|
|
}
|
|
|
|
if (isset($contact->portal_password)) {
|
|
$form.="<input type='password' name='${prefix}portal_password1' value='{$contact->portal_password}'>";
|
|
$form.="<input type='password' name='${prefix}portal_password' value='{$contact->portal_password}'>";
|
|
$form .= "<input name='${prefix}old_portal_password' type='hidden' size='25' value='{$contact->portal_password}' >";
|
|
} else {
|
|
$form.="<input type='password' name='${prefix}portal_password1' value=''>";
|
|
$form.="<input type='password' name='${prefix}portal_password' value=''>";
|
|
$form .= "<input name='${prefix}old_portal_password' type='hidden' size='25' value='' >";
|
|
}
|
|
}
|
|
|
|
$form .= <<<EOQ
|
|
<script type="text/javascript">
|
|
Calendar.setup ({
|
|
inputField : "{$prefix}jscal_field", daFormat : "$cal_dateformat", ifFormat : "$cal_dateformat", showsTime : false, button : "{$prefix}jscal_trigger", singleClick : true, step : 1, weekNumbers:false
|
|
});
|
|
</script>
|
|
EOQ;
|
|
|
|
|
|
|
|
$javascript = new javascript();
|
|
$javascript->setFormName($formname);
|
|
$javascript->setSugarBean($this->getContact());
|
|
$javascript->addField('email1', 'false', $prefix);
|
|
$javascript->addField('email2', 'false', $prefix);
|
|
$javascript->addRequiredFields($prefix);
|
|
|
|
$form .=$javascript->getScript();
|
|
$mod_strings = $temp_strings;
|
|
|
|
|
|
return $form;
|
|
}
|
|
|
|
public function getFormBody($prefix, $mod='', $formname='')
|
|
{
|
|
if (!ACLController::checkAccess('Contacts', 'edit', true)) {
|
|
return '';
|
|
}
|
|
global $mod_strings;
|
|
$temp_strings = $mod_strings;
|
|
if (!empty($mod)) {
|
|
global $current_language;
|
|
$mod_strings = return_module_language($current_language, $mod);
|
|
}
|
|
global $app_strings;
|
|
global $current_user;
|
|
$lbl_required_symbol = $app_strings['LBL_REQUIRED_SYMBOL'];
|
|
$lbl_first_name = $mod_strings['LBL_FIRST_NAME'];
|
|
$lbl_last_name = $mod_strings['LBL_LAST_NAME'];
|
|
$lbl_phone = $mod_strings['LBL_PHONE'];
|
|
$user_id = $current_user->id;
|
|
$lbl_email_address = $mod_strings['LBL_EMAIL_ADDRESS'];
|
|
if ($formname == 'EmailEditView') {
|
|
$form = <<<EOQ
|
|
<input type="hidden" name="${prefix}record" value="">
|
|
<input type="hidden" name="${prefix}email2" value="">
|
|
<input type="hidden" name="${prefix}phone_work" value="">
|
|
<input type="hidden" name="${prefix}assigned_user_id" value='${user_id}'>
|
|
$lbl_first_name<br>
|
|
<input name="${prefix}first_name" type="text" value="" size=10><br>
|
|
$lbl_last_name <span class="required">$lbl_required_symbol</span><br>
|
|
<input name='${prefix}last_name' type="text" value="" size=10><br>
|
|
$lbl_email_address <span class="required">$lbl_required_symbol</span><br>
|
|
<input name='${prefix}email1' type="text" value=""><br><br>
|
|
|
|
EOQ;
|
|
} else {
|
|
$form = <<<EOQ
|
|
<input type="hidden" name="${prefix}record" value="">
|
|
<input type="hidden" name="${prefix}email2" value="">
|
|
<input type="hidden" name="${prefix}assigned_user_id" value='${user_id}'>
|
|
$lbl_first_name<br>
|
|
<input name="${prefix}first_name" type="text" value=""><br>
|
|
$lbl_last_name <span class="required">$lbl_required_symbol</span><br>
|
|
<input name='${prefix}last_name' type="text" value=""><br>
|
|
$lbl_phone<br>
|
|
<input name='${prefix}phone_work' type="text" value=""><br>
|
|
$lbl_email_address<br>
|
|
<input name='${prefix}email1' type="text" value=""><br><br>
|
|
|
|
EOQ;
|
|
}
|
|
|
|
|
|
$javascript = new javascript();
|
|
$javascript->setFormName($formname);
|
|
$javascript->setSugarBean($this->getContact());
|
|
$javascript->addField('email1', 'false', $prefix);
|
|
$javascript->addRequiredFields($prefix);
|
|
|
|
$form .=$javascript->getScript();
|
|
$mod_strings = $temp_strings;
|
|
return $form;
|
|
}
|
|
public function getForm($prefix, $mod='')
|
|
{
|
|
if (!ACLController::checkAccess('Contacts', 'edit', true)) {
|
|
return '';
|
|
}
|
|
if (!empty($mod)) {
|
|
global $current_language;
|
|
$mod_strings = return_module_language($current_language, $mod);
|
|
} else {
|
|
global $mod_strings;
|
|
}
|
|
global $app_strings;
|
|
|
|
$lbl_save_button_title = $app_strings['LBL_SAVE_BUTTON_TITLE'];
|
|
$lbl_save_button_key = $app_strings['LBL_SAVE_BUTTON_KEY'];
|
|
$lbl_save_button_label = $app_strings['LBL_SAVE_BUTTON_LABEL'];
|
|
|
|
|
|
$the_form = get_left_form_header($mod_strings['LBL_NEW_FORM_TITLE']);
|
|
$the_form .= <<<EOQ
|
|
|
|
<form name="${prefix}ContactSave" onSubmit="return check_form('${prefix}ContactSave')" method="POST" action="index.php">
|
|
<input type="hidden" name="${prefix}module" value="Contacts">
|
|
<input type="hidden" name="${prefix}action" value="Save">
|
|
EOQ;
|
|
$the_form .= $this->getFormBody($prefix, 'Contacts', "${prefix}ContactSave");
|
|
$the_form .= <<<EOQ
|
|
<input title="$lbl_save_button_title" accessKey="$lbl_save_button_key" class="button" type="submit" name="${prefix}button" value=" $lbl_save_button_label " >
|
|
</form>
|
|
|
|
EOQ;
|
|
$the_form .= get_left_form_footer();
|
|
$the_form .= get_validate_record_js();
|
|
|
|
return $the_form;
|
|
}
|
|
|
|
|
|
public function handleSave($prefix, $redirect=true, $useRequired=false)
|
|
{
|
|
global $theme, $current_user;
|
|
|
|
|
|
|
|
|
|
require_once('include/formbase.php');
|
|
|
|
global $timedate;
|
|
|
|
$focus = $this->getContact();
|
|
|
|
if ($useRequired && !checkRequired($prefix, array_keys($focus->required_fields))) {
|
|
return null;
|
|
}
|
|
|
|
if (!empty($_POST[$prefix.'new_reports_to_id'])) {
|
|
$focus->retrieve($_POST[$prefix.'new_reports_to_id']);
|
|
$focus->reports_to_id = $_POST[$prefix.'record'];
|
|
} else {
|
|
$focus = populateFromPost($prefix, $focus);
|
|
if (isset($_POST[$prefix.'old_portal_password']) && !empty($focus->portal_password) && $focus->portal_password != $_POST[$prefix.'old_portal_password']) {
|
|
$focus->portal_password = User::getPasswordHash($focus->portal_password);
|
|
}
|
|
if (!isset($_POST[$prefix.'email_opt_out'])) {
|
|
$focus->email_opt_out = 0;
|
|
}
|
|
if (!isset($_POST[$prefix.'do_not_call'])) {
|
|
$focus->do_not_call = 0;
|
|
}
|
|
}
|
|
if (!$focus->ACLAccess('Save')) {
|
|
ACLController::displayNoAccess(true);
|
|
sugar_cleanup(true);
|
|
}
|
|
if ($_REQUEST['action'] != 'ConvertLead' && $_REQUEST['action'] != 'ConvertProspect') {
|
|
if (!empty($_POST[$prefix.'sync_contact']) || !empty($focus->sync_contact)) {
|
|
$focus->contacts_users_id = $current_user->id;
|
|
} else {
|
|
if (!isset($focus->users)) {
|
|
$focus->load_relationship('user_sync');
|
|
}
|
|
$focus->contacts_users_id = null;
|
|
$focus->user_sync->delete($focus->id, $current_user->id);
|
|
}
|
|
}
|
|
|
|
if (isset($GLOBALS['check_notify'])) {
|
|
$check_notify = $GLOBALS['check_notify'];
|
|
} else {
|
|
$check_notify = false;
|
|
}
|
|
|
|
|
|
if (empty($_POST['record']) && empty($_POST['dup_checked'])) {
|
|
$duplicateContacts = $this->checkForDuplicates($prefix);
|
|
if (isset($duplicateContacts)) {
|
|
$location='module=Contacts&action=ShowDuplicates';
|
|
$get = '';
|
|
if (isset($_POST['inbound_email_id']) && !empty($_POST['inbound_email_id'])) {
|
|
$get .= '&inbound_email_id='.$_POST['inbound_email_id'];
|
|
}
|
|
|
|
// Bug 25311 - Add special handling for when the form specifies many-to-many relationships
|
|
if (isset($_POST['relate_to']) && !empty($_POST['relate_to'])) {
|
|
$get .= '&Contactsrelate_to='.$_POST['relate_to'];
|
|
}
|
|
if (isset($_POST['relate_id']) && !empty($_POST['relate_id'])) {
|
|
$get .= '&Contactsrelate_id='.$_POST['relate_id'];
|
|
}
|
|
|
|
//add all of the post fields to redirect get string
|
|
foreach ($focus->column_fields as $field) {
|
|
if (!empty($focus->$field) && !is_object($focus->$field)) {
|
|
$get .= "&Contacts$field=".urlencode($focus->$field);
|
|
}
|
|
}
|
|
|
|
foreach ($focus->additional_column_fields as $field) {
|
|
if (!empty($focus->$field)) {
|
|
$get .= "&Contacts$field=".urlencode($focus->$field);
|
|
}
|
|
}
|
|
|
|
if ($focus->hasCustomFields()) {
|
|
foreach ($focus->field_defs as $name=>$field) {
|
|
if (!empty($field['source']) && $field['source'] == 'custom_fields') {
|
|
$get .= "&Contacts$name=".urlencode($focus->$name);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
$emailAddress = new SugarEmailAddress();
|
|
$get .= $emailAddress->getFormBaseURL($focus);
|
|
|
|
|
|
//create list of suspected duplicate contact id's in redirect get string
|
|
$i=0;
|
|
foreach ($duplicateContacts as $contact) {
|
|
$get .= "&duplicate[$i]=".$contact['id'];
|
|
$i++;
|
|
}
|
|
|
|
//add return_module, return_action, and return_id to redirect get string
|
|
$urlData = array('return_module' => 'Contacts', 'return_action' => '');
|
|
foreach (array('return_module', 'return_action', 'return_id', 'popup', 'create', 'start') as $var) {
|
|
if (!empty($_POST[$var])) {
|
|
$urlData[$var] = $_POST[$var];
|
|
}
|
|
}
|
|
$get .= "&".http_build_query($urlData);
|
|
$_SESSION['SHOW_DUPLICATES'] = $get;
|
|
|
|
//now redirect the post to modules/Contacts/ShowDuplicates.php
|
|
if (!empty($_POST['is_ajax_call']) && $_POST['is_ajax_call'] == '1') {
|
|
ob_clean();
|
|
$json = getJSONobj();
|
|
echo $json->encode(array('status' => 'dupe', 'get' => $location));
|
|
} else {
|
|
if (!empty($_REQUEST['ajax_load'])) {
|
|
echo "<script>SUGAR.ajaxUI.loadContent('index.php?$location');</script>";
|
|
} else {
|
|
if (!empty($_POST['to_pdf'])) {
|
|
$location .= '&to_pdf='.urlencode($_POST['to_pdf']);
|
|
}
|
|
header("Location: index.php?$location");
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
global $current_user;
|
|
if (is_admin($current_user)) {
|
|
if (!isset($_POST[$prefix.'portal_active'])) {
|
|
$focus->portal_active = '0';
|
|
}
|
|
//if no password is set set account to inactive for portal
|
|
if (empty($_POST[$prefix.'portal_name'])) {
|
|
$focus->portal_active = '0';
|
|
}
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//// INBOUND EMAIL HANDLING
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
if (isset($_REQUEST['inbound_email_id']) && !empty($_REQUEST['inbound_email_id'])) {
|
|
// fake this case like it's already saved.
|
|
$focus->save($check_notify);
|
|
|
|
$email = BeanFactory::newBean('Emails');
|
|
$email->retrieve($_REQUEST['inbound_email_id']);
|
|
$email->parent_type = 'Contacts';
|
|
$email->parent_id = $focus->id;
|
|
$email->assigned_user_id = $current_user->id;
|
|
$email->status = 'read';
|
|
$email->save();
|
|
$email->load_relationship('contacts');
|
|
$email->contacts->add($focus->id);
|
|
|
|
header("Location: index.php?&module=Emails&action=EditView&type=out&inbound_email_id=".$_REQUEST['inbound_email_id']."&parent_id=".$email->parent_id."&parent_type=".$email->parent_type.'&start='.$_REQUEST['start'].'&assigned_user_id='.$current_user->id);
|
|
exit();
|
|
}
|
|
//// END INBOUND EMAIL HANDLING
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
$focus->save($check_notify);
|
|
$return_id = $focus->id;
|
|
|
|
$GLOBALS['log']->debug("Saved record with id of ".$return_id);
|
|
|
|
if ($redirect && !empty($_POST['is_ajax_call']) && $_POST['is_ajax_call'] == '1') {
|
|
$json = getJSONobj();
|
|
echo $json->encode(array('status' => 'success',
|
|
'get' => ''));
|
|
$trackerManager = TrackerManager::getInstance();
|
|
$timeStamp = TimeDate::getInstance()->nowDb();
|
|
if ($monitor = $trackerManager->getMonitor('tracker')) {
|
|
$monitor->setValue('action', 'detailview');
|
|
$monitor->setValue('user_id', $GLOBALS['current_user']->id);
|
|
$monitor->setValue('module_name', 'Contacts');
|
|
$monitor->setValue('date_modified', $timeStamp);
|
|
$monitor->setValue('visible', 1);
|
|
|
|
if (!empty($this->bean->id)) {
|
|
$monitor->setValue('item_id', $return_id);
|
|
$monitor->setValue('item_summary', $focus->get_summary_text());
|
|
}
|
|
$trackerManager->saveMonitor($monitor, true, true);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
if ($redirect && isset($_POST['popup']) && $_POST['popup'] == 'true') {
|
|
$urlData = array("query" => true, "first_name" => $focus->first_name, "last_name" => $focus->last_name,
|
|
"module" => 'Accounts', 'action' => 'Popup');
|
|
if (!empty($_POST['return_module'])) {
|
|
$urlData['module'] = $_POST['return_module'];
|
|
}
|
|
if (!empty($_POST['return_action'])) {
|
|
$urlData['action'] = $_POST['return_action'];
|
|
}
|
|
foreach (array('return_id', 'popup', 'create', 'to_pdf') as $var) {
|
|
if (!empty($_POST[$var])) {
|
|
$urlData[$var] = $_POST[$var];
|
|
}
|
|
}
|
|
header("Location: index.php?".http_build_query($urlData));
|
|
return;
|
|
}
|
|
|
|
if ($redirect) {
|
|
$this->handleRedirect($return_id);
|
|
} else {
|
|
return $focus;
|
|
}
|
|
}
|
|
|
|
public function handleRedirect($return_id)
|
|
{
|
|
if (isset($_POST['return_module']) && $_POST['return_module'] != "") {
|
|
$return_module = urlencode($_POST['return_module']);
|
|
} else {
|
|
$return_module = "Contacts";
|
|
}
|
|
|
|
if (isset($_POST['return_action']) && $_POST['return_action'] != "") {
|
|
if ($_REQUEST['return_module'] == 'Emails') {
|
|
$return_action = urlencode($_REQUEST['return_action']);
|
|
}
|
|
// if we create a new record "Save", we want to redirect to the DetailView
|
|
elseif ($_REQUEST['action'] == "Save" && $_REQUEST['return_module'] != "Home") {
|
|
$return_action = 'DetailView';
|
|
} else {
|
|
// if we "Cancel", we go back to the list view.
|
|
$return_action = urlencode($_REQUEST['return_action']);
|
|
}
|
|
} else {
|
|
$return_action = "DetailView";
|
|
}
|
|
|
|
if (isset($_POST['return_id']) && $_POST['return_id'] != "") {
|
|
$return_id = urlencode($_POST['return_id']);
|
|
}
|
|
|
|
//eggsurplus Bug 23816: maintain VCR after an edit/save. If it is a duplicate then don't worry about it. The offset is now worthless.
|
|
$redirect_url = "index.php?action=$return_action&module=$return_module&record=$return_id";
|
|
if (isset($_REQUEST['offset']) && empty($_REQUEST['duplicateSave'])) {
|
|
$redirect_url .= "&offset=".$_REQUEST['offset'];
|
|
}
|
|
|
|
if (!empty($_REQUEST['ajax_load'])) {
|
|
echo "<script>SUGAR.ajaxUI.loadContent('$redirect_url');</script>\n";
|
|
} else {
|
|
header("Location: ". $redirect_url);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return Contact
|
|
*/
|
|
protected function getContact()
|
|
{
|
|
return BeanFactory::newBean('Contacts');
|
|
}
|
|
}
|