Files
crm.e5.pl/modules/PContacts/BusinessCard.php

368 lines
17 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 - 2009 SugarCRM Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU 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 General Public License for more
* details.
*
* You should have received a copy of the GNU 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 pcontact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address pcontact@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 General Public License version 3.
*
* In accordance with Section 7(b) of the GNU 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: Business Card Wizard
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
* All Rights Reserved.
* Contributor(s): ______________________________________..
********************************************************************************/
global $app_strings;
global $app_list_strings;
require_once('XTemplate/xtpl.php');
global $theme;
$error_msg = '';
$theme_path="themes/".$theme."/";
$image_path=$theme_path."images/";
global $current_language;
$mod_strings = return_module_language($current_language, 'PContacts');
echo "\n<p>\n";
echo get_module_title($mod_strings['LBL_MODULE_NAME'], $mod_strings['LBL_MODULE_NAME'].": ".$mod_strings['LBL_BUSINESSCARD'], true);
echo "\n</p>\n";
$xtpl=new XTemplate ('modules/PContacts/BusinessCard.html');
$xtpl->assign("MOD", $mod_strings);
$xtpl->assign("APP", $app_strings);
$xtpl->assign("IMAGE_PATH", $image_path);$xtpl->assign("PRINT_URL", "index.php?".$GLOBALS['request_string']);
$xtpl->assign("HEADER", $mod_strings['LBL_ADD_BUSINESSCARD']);
$xtpl->assign("MODULE", $_REQUEST['module']);
if ($error_msg != '')
{
$xtpl->assign("ERROR", $error_msg);
$xtpl->parse("main.error");
}
if(isset($_POST['handle']) && $_POST['handle'] == 'Save'){
require_once('modules/PContacts/Contact.php');
require_once('modules/PContacts/ContactFormBase.php');
$pcontactForm = new PContactFormBase();
require_once('modules/Accounts/AccountFormBase.php');
$accountForm = new AccountFormBase();
require_once('modules/Opportunities/Opportunity.php');
require_once('modules/Opportunities/OpportunityFormBase.php');
$oppForm = new OpportunityFormBase();
if(!isset($_POST['selectedPContact']) && !isset($_POST['ContinueContact'])){
$duplicatePContacts = $pcontactForm->checkForDuplicates('Contacts');
if(isset($duplicatePContacts)){
$formBody = $pcontactForm->buildTableForm($duplicatePContacts);
$xtpl->assign('FORMBODY', $formBody);
$xtpl->parse('main.formnoborder');
$xtpl->parse('main');
$xtpl->out('main');
return;
}
}
if(empty($_POST['selectedAccount']) && empty($_POST['ContinueAccount'])){
$duplicateAccounts = $accountForm->checkForDuplicates('Accounts');
if(isset($duplicateAccounts)){
$xtpl->assign('FORMBODY', $accountForm->buildTableForm($duplicateAccounts));
$xtpl->parse('main.formnoborder');
$xtpl->parse('main');
$xtpl->out('main');
return;
}
}
if(isset($_POST['newopportunity']) && $_POST['newopportunity']=='on' &&!isset($_POST['selectedOpportunity']) && !isset($_POST['ContinueOpportunity'])){
$duplicateOpps = $oppForm->checkForDuplicates('Opportunities');
if(isset($duplicateOpps)){
$xtpl->assign('FORMBODY', $oppForm->buildTableForm($duplicateOpps));
$xtpl->parse('main.formnoborder');
$xtpl->parse('main');
$xtpl->out('main');
return;
}
}
if(!empty($_POST['selectedPContact'])){
$pcontact = new PContact();
$pcontact->retrieve($_POST['selectedPContact']);
}else{
$pcontact= $contactForm->handleSave('PContacts',false, false);
}
if(!empty($_POST['selectedAccount'])){
$account = new Account();
$account->retrieve($_POST['selectedAccount']);
}else if(isset($_POST['newaccount']) && $_POST['newaccount']=='on' ){
$account= $accountForm->handleSave('Accounts',false, false);
}
if(isset($_POST['newopportunity']) && $_POST['newopportunity']=='on' ){
if(!empty($_POST['selectedOpportunity'])){
$opportunity = new Opportunity();
$opportunity->retrieve($_POST['selectedOpportunity']);
}else{
if(isset($account)){
$_POST['Opportunitiesaccount_id'] = $account->id;
$_POST['Opportunitiesaccount_name'] = $account->name;
}
if(isset($_POST['PContactslead_source']) && !empty($_POST['Contactslead_source'])){
$_POST['Opportunitieslead_source'] = $_POST['PContactslead_source'];
}
$opportunity= $oppForm->handleSave('Opportunities',false, false);
}
}
require_once('modules/Notes/NoteFormBase.php');
$noteForm = new NoteFormBase();
if(isset($account))
$_POST['AccountNotesparent_id'] = $account->id;
$accountnote= $noteForm->handleSave('AccountNotes',false, false);
if(isset($pcontact))
$_POST['PContactNotesparent_type'] = "Contacts";
$_POST['PContactNotesparent_id'] = $pcontact->id;
$pcontactnote= $noteForm->handleSave('PContactNotes',false, false);
if(isset($opportunity)){
$_POST['OpportunityNotesparent_type'] = "Opportunities";
$_POST['OpportunityNotesparent_id'] = $opportunity->id;
$opportunitynote= $noteForm->handleSave('OpportunityNotes',false, false);
}
if(isset($_POST['newappointment']) && $_POST['newappointment']=='on' ){
if(isset($_POST['appointment']) && $_POST['appointment'] == 'Meeting'){
require_once('modules/Meetings/MeetingFormBase.php');
$meetingForm = new MeetingFormBase();
$meeting= $meetingForm->handleSave('Appointments',false, false);
}else{
require_once('modules/Calls/CallFormBase.php');
$callForm = new CallFormBase();
$call= $callForm->handleSave('Appointments',false, false);
}
}
if(isset($call)){
if(isset($pcontact)) {
$call->load_relationship('pcontacts');
$call->pcontacts->add($contact->id);
} else if(isset($account)){
$call->load_relationship('account');
$call->account->add($account->id);
}else if(isset($opportunity)){
$call->load_relationship('opportunity');
$call->opportunity->add($opportunity->id);
}
}
if(isset($meeting)){
if(isset($pcontact)) {
$meeting->load_relationship('pcontacts');
$meeting->pcontacts->add($contact->id);
} else if(isset($account)){
$meeting->load_relationship('account');
$meeting->account->add($account->id);
}else if(isset($opportunity)){
$meeting->load_relationship('opportunity');
$meeting->opportunity->add($opportunity->id);
}
}
if(isset($account)){
if(isset($pcontact)) {
$account->load_relationship('pcontacts');
$account->pcontacts->add($contact->id);
} else if(isset($accountnote)){
$account->load_relationship('notes');
$account->notes->add($accountnote->id);
}else if(isset($opportunity)){
$account->load_relationship('opportunities');
$account->opportunities->add($opportunity->id);
}
}
if(isset($opportunity)){
if(isset($pcontact)) {
$opportunity->load_relationship('pcontacts');
$opportunity->pcontacts->add($contact->id);
} else if(isset($accountnote)){
$opportunity->load_relationship('notes');
$opportunity->notes->add($accountnote->id);
}
}
if(isset($pcontact)){
if(isset($pcontactnote)){
$pcontact->load_relationship('notes');
$pcontact->notes->add($contactnote->id);
}
}
if(isset($pcontact)){
$pcontact->track_view($current_user->id, 'PContacts');
if(isset($_POST['selectedPContact']) && $_POST['selectedContact'] == $pcontact->id){
$xtpl->assign('ROWVALUE', "<LI>".$mod_strings['LBL_EXISTING_PCONTACT']." - <a href='index.php?action=DetailView&module=PContacts&record=".$pcontact->id."'>".$contact->first_name ." ".$contact->last_name."</a>" );
$xtpl->parse('main.row');
}else{
$xtpl->assign('ROWVALUE', "<LI>".$mod_strings['LBL_CREATED_PCONTACT']." - <a href='index.php?action=DetailView&module=PContacts&record=".$pcontact->id."'>".$contact->first_name ." ".$contact->last_name."</a>" );
$xtpl->parse('main.row');
}
}
if(isset($account)){
$account->track_view($current_user->id, 'Accounts');
if(isset($_POST['selectedAccount']) && $_POST['selectedAccount'] == $account->id){
$xtpl->assign('ROWVALUE', "<LI>".$mod_strings['LBL_EXISTING_ACCOUNT']. " - <a href='index.php?action=DetailView&module=Accounts&record=".$account->id."'>".$account->name."</a>");
$xtpl->parse('main.row');
}else{
$xtpl->assign('ROWVALUE', "<LI>".$mod_strings['LBL_CREATED_ACCOUNT']. " - <a href='index.php?action=DetailView&module=Accounts&record=".$account->id."'>".$account->name."</a>");
$xtpl->parse('main.row');
}
}
if(isset($opportunity)){
$opportunity->track_view($current_user->id, 'Opportunities');
if(isset($_POST['selectedOpportunity']) && $_POST['selectedOpportunity'] == $opportunity->id){
$xtpl->assign('ROWVALUE', "<LI>".$mod_strings['LBL_EXISTING_OPPORTUNITY']. " - <a href='index.php?action=DetailView&module=Opportunities&record=".$opportunity->id."'>".$opportunity->name."</a>");
$xtpl->parse('main.row');
}else{
$xtpl->assign('ROWVALUE', "<LI>".$mod_strings['LBL_CREATED_OPPORTUNITY']. " - <a href='index.php?action=DetailView&module=Opportunities&record=".$opportunity->id."'>".$opportunity->name."</a>");
$xtpl->parse('main.row');
}
}
if(isset($call)){
$call->track_view($current_user->id, 'Calls');
$xtpl->assign('ROWVALUE', "<LI>".$mod_strings['LBL_CREATED_CALL']. " - <a href='index.php?action=DetailView&module=Calls&record=".$call->id."'>".$call->name."</a>");
$xtpl->parse('main.row');
}
if(isset($meeting)){
$meeting->track_view($current_user->id, 'Meetings');
$xtpl->assign('ROWVALUE', "<LI>".$mod_strings['LBL_CREATED_MEETING']. " - <a href='index.php?action=DetailView&module=Calls&record=".$meeting->id."'>".$meeting->name."</a>");
$xtpl->parse('main.row');
}
$xtpl->assign('ROWVALUE',"&nbsp;");
$xtpl->parse('main.row');
$xtpl->assign('ROWVALUE',"<a href='index.php?module=PContacts&action=BusinessCard'>{$mod_strings['LBL_ADDMORE_BUSINESSCARD']}</a>");
$xtpl->parse('main.row');
$xtpl->parse('main');
$xtpl->out('main');
}
else{
//PCONTACT
$xtpl->assign('FORMHEADER',$mod_strings['LNK_NEW_PCONTACT']);
$xtpl->parse("main.startform");
require_once('modules/PContacts/ContactFormBase.php');
$xtpl->assign('OPPNEEDSACCOUNT',$mod_strings['NTC_OPPORTUNITY_REQUIRES_ACCOUNT']);
if ($sugar_config['require_accounts']) {
$xtpl->assign('CHECKOPPORTUNITY', "&& checkOpportunity()");
}
else {
$xtpl->assign('CHECKOPPORTUNITY', "");
}
$pcontactForm = new PContactFormBase();
$xtpl->assign('FORMBODY',$pcontactForm->getWideFormBody('PContacts', 'Contacts', 'BusinessCard', '', false));
$xtpl->assign('TABLECLASS', 'tabForm');
$xtpl->assign('CLASS', 'dataLabel');
require_once('modules/Notes/NoteFormBase.php');
$noteForm = new NoteFormBase();
$postform = "<div id='pcontactnotelink'><p><a href='javascript:toggleDisplay(\"contactnote\");addToValidate(\"BusinessCard\", \"PContactNotesname\", \"varchar\", true,\"".$mod_strings['LBL_NOTE_SUBJECT']."\");' class='tabFormLink'>${mod_strings['LNK_NEW_NOTE']}</a></p></div>";
$postform .= '<div id="pcontactnote" style="display:none">'.'<input type=hidden name=CreatePContactNote value=0>'.$noteForm->getFormBody('ContactNotes','Notes','BusinessCard', 85, false).'</div>';
$xtpl->assign('POSTFORM',$postform);
$xtpl->parse("main.form");
$xtpl->assign('HEADER', $app_strings['LBL_RELATED_RECORDS']);
$xtpl->parse("main.hrrow");
$popup_request_data = array(
'call_back_function' => 'set_return',
'form_name' => 'BusinessCard',
'field_to_name_array' => array(
'id' => 'selectedAccount',
'name' => 'display_account_name',
),
);
$json = getJSONobj();
$encoded_pcontact_popup_request_data = $json->encode($popup_request_data);
//Account
require_once('include/QuickSearchDefaults.php');
$qsd = new QuickSearchDefaults();
$sqs_objects = array('display_account_name' => $qsd->getQSParent());
$sqs_objects['display_account_name']['populate_list'] = array('display_account_name', 'selectedAccount');
$quicksearch_js = '<script type="text/javascript" language="javascript">sqs_objects = ' . $json->encode($sqs_objects) . ';
addToValidateBinaryDependency(\'BusinessCard\', \'display_account_name\', \'alpha\', false, \'' . $app_strings['ERR_SQS_NO_MATCH_FIELD'] . $app_strings['LBL_ACCOUNT'] . '\', \'selectedAccount\' );
</script>';
$selectAccountButton = $quicksearch_js;
$selectAccountButton .= "<div id='newaccountdivlink' style='display:inline' class='dataLabel'>{$mod_strings['LNK_SELECT_ACCOUNT']}:&nbsp;<input class='sqsEnabled' name='display_account_name' id='display_account_name' type=\"text\" value=\"\"><input name='selectedAccount' id='selectedAccount' type=\"hidden\" value=''>&nbsp;<input type='button' title=\"{$app_strings['LBL_SELECT_BUTTON_TITLE']}\" accessKey=\"{$app_strings['LBL_SELECT_BUTTON_KEY']}\" type=\"button\" class=\"button\" value='{$app_strings['LBL_SELECT_BUTTON_LABEL']}' name=btn1 LANGUAGE=javascript onclick='open_popup(\"Accounts\", 600, 400, \"\", true, false, $encoded_pcontact_popup_request_data);'/> <input type='button' title=\"{$app_strings['LBL_CLEAR_BUTTON_TITLE']}\" accessKey=\"{$app_strings['LBL_CLEAR_BUTTON_KEY']}\" type=\"button\" class=\"button\" value='{$app_strings['LBL_CLEAR_BUTTON_LABEL']}' name=btn1 LANGUAGE=javascript onclick='document.forms[\"ConvertLead\"].selectedAccount.value=\"\";document.forms[\"ConvertLead\"].display_account_name.value=\"\"; '><br><b>{$app_strings['LBL_OR']}</b></div><br><br>";
$xtpl->assign('FORMHEADER',get_form_header($mod_strings['LNK_NEW_ACCOUNT'], '', ''));
require_once('modules/Accounts/AccountFormBase.php');
$accountForm = new AccountFormBase();
$xtpl->assign('CLASS', 'evenListRow');
$xtpl->assign('FORMBODY',$selectAccountButton."<slot class='dataLabel'><input class='checkbox' type='checkbox' name='newaccount' onclick='document.forms[\"BusinessCard\"].selectedAccount.value=\"\";document.forms[\"BusinessCard\"].display_account_name.value=\"\";toggleDisplay(\"newaccountdiv\");'>&nbsp;".$mod_strings['LNK_NEW_ACCOUNT']."</slot>&nbsp;<div id='newaccountdiv' style='display:none'>".$accountForm->getWideFormBody('Accounts', 'Accounts','BusinessCard', '' ));
require_once('modules/Notes/NoteFormBase.php');
$noteForm = new NoteFormBase();
$postform = "<div id='accountnotelink'><p><a href='javascript:toggleDisplay(\"accountnote\");'>${mod_strings['LNK_NEW_NOTE']}</a></p></div>";
$postform .= '<div id="accountnote" style="display:none">'.$noteForm->getFormBody('AccountNotes', 'Notes', 'BusinessCard', 85).'</div>';
$xtpl->assign('POSTFORM',$postform);
$xtpl->parse("main.headlessform");
//OPPORTUNITTY
$xtpl->assign('FORMHEADER',get_form_header($mod_strings['LNK_NEW_OPPORTUNITY'], '', ''));
require_once('modules/Opportunities/OpportunityFormBase.php');
$oppForm = new OpportunityFormBase();
$xtpl->assign('CLASS', 'evenListRow');
$xtpl->assign('FORMBODY',"<slot class='dataLabel'><input class='checkbox' type='checkbox' name='newopportunity' onclick='toggleDisplay(\"newoppdiv\");'>&nbsp;".$mod_strings['LNK_NEW_OPPORTUNITY']."</slot><div id='newoppdiv' style='display:none'>".$oppForm->getWideFormBody('Opportunities', 'Opportunities','BusinessCard', '' , false));
require_once('modules/Notes/NoteFormBase.php');
$noteForm = new NoteFormBase();
$postform = "<div id='oppnotelink'><a href='javascript:toggleDisplay(\"oppnote\");'>${mod_strings['LNK_NEW_NOTE']}</a></div>";
$postform .= '<div id="oppnote" style="display:none">'.$noteForm->getFormBody('OpportunityNotes', 'Notes','BusinessCard', 85).'</div><br>';
$xtpl->assign('POSTFORM',$postform);
$xtpl->parse("main.headlessform");
//Appointment
$xtpl->assign('FORMHEADER',$mod_strings['LNK_NEW_APPOINTMENT']);
require_once('modules/Calls/CallFormBase.php');
$callForm = new CallFormBase();
$xtpl->assign('FORMBODY', "<input class='checkbox' type='checkbox' name='newappointment' onclick='toggleDisplay(\"newappointmentdiv\");'>&nbsp;".$mod_strings['LNK_NEW_APPOINTMENT']."<div id='newappointmentdiv' style='display:none'>".$callForm->getWideFormBody('Appointments', 'Calls',85));
$xtpl->assign('POSTFORM','');
$xtpl->parse("main.headlessform");
$xtpl->parse("main.save");
$xtpl->parse("main.endform");
$xtpl->parse("main");
$xtpl->out("main");
}
?>