mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
185 lines
6.4 KiB
PHP
185 lines
6.4 KiB
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
global $table_prefix;
|
|
require_once 'modules/VteCore/EditView.php'; //crmv@30447
|
|
|
|
if($_REQUEST['upload_error'] == true)
|
|
{
|
|
echo '<br><b><font color="red"> The selected file has no data or a invalid file.</font></b><br>';
|
|
}
|
|
|
|
//Email Error handling
|
|
if($_REQUEST['fax_error'] != '')
|
|
{
|
|
require_once("modules/Fax/fax_.php");
|
|
echo parseEmailErrorString($_REQUEST['mail_error']);
|
|
}
|
|
//added to select the module in combobox of compose-popup
|
|
if(isset($_REQUEST['par_module']) && $_REQUEST['par_module']!=''){
|
|
$smarty->assign('select_module',RequestHandler::paramModule("par_module"));//crmv@211287
|
|
}
|
|
elseif(isset($_REQUEST['pmodule']) && $_REQUEST['pmodule']!='') {
|
|
$smarty->assign('select_module',RequestHandler::paramModule("pmodule"));//crmv@211287
|
|
}
|
|
|
|
if(isset($_REQUEST['record']) && $_REQUEST['record'] !='')
|
|
{
|
|
$focus->id = RequestHandler::paramInt("record");//crmv@211287
|
|
$focus->mode = 'edit';
|
|
$focus->retrieve_entity_info($_REQUEST['record'],"Fax");
|
|
if(isset($_REQUEST['forward']) && $_REQUEST['forward'] != '')
|
|
{
|
|
$att_id_list = '';//used in getBlockInformation funtion as global variable to get the attachment id list for forwarding fax with attachment
|
|
$focus->mode = '';
|
|
}
|
|
else
|
|
{
|
|
$query = 'select idlists,from_number,to_number from '.$table_prefix.'_faxdetails where faxid =?';
|
|
$result = $adb->pquery($query, array($focus->id));
|
|
$smarty->assign('FROM_FAX',$adb->query_result($result,0,'from_number'));
|
|
$to_fax = str_replace('###',',',$adb->query_result($result,0,'to_number'));
|
|
$smarty->assign('TO_FAX',trim($to_fax,",").",");
|
|
$smarty->assign('IDLISTS',str_replace('###',',',$adb->query_result($result,0,'idlists')));
|
|
}
|
|
$log->info("Entity info successfully retrieved for EditView.");
|
|
$focus->name=$focus->column_fields['name'];
|
|
}
|
|
elseif(isset($_REQUEST['sendfax']) && $_REQUEST['sendfax'] !='')
|
|
{
|
|
saveListViewCheck($_REQUEST['pmodule'],$_REQUEST['idlist']); //crmv@55198
|
|
$faxids = get_to_faxids($_REQUEST['pmodule']);
|
|
if($faxids['faxids'] != '')
|
|
$to_add = trim($faxids['faxids'],",").",";
|
|
$smarty->assign('TO_FAX',$to_add);
|
|
$smarty->assign('IDLISTS',$faxids['idlists']);
|
|
$focus->mode = '';
|
|
}
|
|
if($_REQUEST["internal_mailer"] == "true") {
|
|
$smarty->assign('INT_MAILER',"true");
|
|
$rec_type = $_REQUEST["type"];
|
|
$rec_id = $_REQUEST["rec_id"];
|
|
$fieldname = $_REQUEST["fieldname"];
|
|
|
|
//crmv@345820
|
|
function get_entity_fax($modulename, $fieldname, $id, $html = false) {
|
|
global $current_user;
|
|
$fail = '';
|
|
|
|
if ($modulename == 'Users') {
|
|
if (!preg_match('/^phone/', $fieldname)) {
|
|
return $fail;
|
|
}
|
|
} elseif (isPermitted($modulename, 'DetailView', $id) !== 'yes') {
|
|
return $fail;
|
|
} elseif (!in_array(getFieldVisibilityPermission($modulename, $current_user->id, $fieldname), [0, '0'], true)) {
|
|
return $fail;
|
|
}
|
|
|
|
$fieldinfo = FieldUtils::getField($modulename, $fieldname);
|
|
if (!$fieldinfo) {
|
|
return $fail;
|
|
}
|
|
$tablename = $fieldinfo['tablename'];
|
|
|
|
switch ($modulename) {
|
|
case "Users": $keycol = "id"; break;
|
|
case "Leads": $keycol = "leadaddressid"; break;
|
|
case "Contacts": $keycol = "contactid"; break;
|
|
case "Accounts": $keycol = "accountid"; break;
|
|
case "Vendors": $keycol = "vendorid"; break;
|
|
default: return $fail;
|
|
}
|
|
|
|
return getSingleFieldValue($tablename, $fieldinfo['columnname'], $keycol, $id, $html) ?? $fail;
|
|
}
|
|
//crmv@345820e
|
|
|
|
//added for getting list-ids to compose email popup from list view(Accounts,Contacts,Leads)
|
|
if(isset($_REQUEST['field_id']) && strlen($_REQUEST['field_id']) != 0) {
|
|
if($_REQUEST['par_module'] == "Users")
|
|
$id_list = $_REQUEST['rec_id'].'@'.'-1|';
|
|
else
|
|
$id_list = RequestHandler::paramString("rec_id").'@'.RequestHandler::paramString("field_id").'|';//crmv@211287
|
|
$smarty->assign("IDLISTS", $id_list);
|
|
}
|
|
|
|
if($rec_type == "record_id") {
|
|
$type = $_REQUEST['par_module'];
|
|
$to_fax = get_entity_fax($type, $fieldname, $rec_id, true); //crmv@345820
|
|
|
|
} elseif ($rec_type == "email_addy") {
|
|
$to_fax = $_REQUEST["email_addy"];
|
|
}
|
|
$smarty->assign('TO_FAX',trim($to_fax,",").",");
|
|
}
|
|
|
|
//handled for replying fax
|
|
if($_REQUEST['reply'] == "true")
|
|
{
|
|
$fromadd = $_REQUEST['record'];
|
|
$query = "select from_fax,idlists from ".$table_prefix."_faxdetails where faxid =?";
|
|
$result = $adb->pquery($query, array($fromadd));
|
|
$from_fax = $adb->query_result($result,0,'from_fax');
|
|
$smarty->assign('TO_FAX',trim($from_fax,",").',');
|
|
$smarty->assign('IDLISTS',str_replace('###',',',$adb->query_result($result,0,'idlists')));
|
|
}
|
|
|
|
$details = getBlocks($currentModule,$disp_view,$mode,$focus->column_fields);
|
|
//changed this below line to view description in all language - bharath
|
|
$smarty->assign("BLOCKS",$details['LBL_FAX_INFORMATION']);
|
|
|
|
//id list of attachments while forwarding
|
|
$smarty->assign("ATT_ID_LIST",$att_id_list);
|
|
|
|
//needed when creating a new fax with default values passed in
|
|
if (isset($_REQUEST['contact_name']) && is_null($focus->contact_name))
|
|
{
|
|
$focus->contact_name = $_REQUEST['contact_name'];
|
|
}
|
|
if (isset($_REQUEST['contact_id']) && is_null($focus->contact_id))
|
|
{
|
|
$focus->contact_id = $_REQUEST['contact_id'];
|
|
}
|
|
if (isset($_REQUEST['parent_name']) && is_null($focus->parent_name))
|
|
{
|
|
$focus->parent_name = $_REQUEST['parent_name'];
|
|
}
|
|
if (isset($_REQUEST['parent_id']) && is_null($focus->parent_id))
|
|
{
|
|
$focus->parent_id = $_REQUEST['parent_id'];
|
|
}
|
|
if (isset($_REQUEST['parent_type']))
|
|
{
|
|
$focus->parent_type = $_REQUEST['parent_type'];
|
|
}
|
|
if (isset($_REQUEST['filename']) && $_REQUEST['isDuplicate'] != 'true')
|
|
{
|
|
$focus->filename = RequestHandler::paramString("filename");
|
|
}
|
|
elseif (is_null($focus->parent_type))
|
|
{
|
|
$focus->parent_type = $app_list_strings['record_type_default_key'];
|
|
}
|
|
|
|
$smarty->assign("ENTITY_ID", RequestHandler::paramInt("record"));//crmv@211287
|
|
$smarty->assign("ENTITY_TYPE",RequestHandler::paramModule("fax_directing_module"));//crmv@211287
|
|
$smarty->assign("OLD_ID", $old_id );
|
|
//Display the FCKEditor or not? -- configure $FCKEDITOR_DISPLAY in config.php
|
|
$smarty->assign("FCKEDITOR_DISPLAY",$FCKEDITOR_DISPLAY);
|
|
|
|
if(empty($focus->filename))
|
|
{
|
|
$smarty->assign("FILENAME_TEXT", "");
|
|
$smarty->assign("FILENAME", "");
|
|
}
|
|
else
|
|
{
|
|
$smarty->assign("FILENAME_TEXT", "(".$focus->filename.")");
|
|
$smarty->assign("FILENAME", $focus->filename);
|
|
}
|
|
|
|
$smarty->display("ComposeFax.tpl");
|
|
?>
|