mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
47 lines
1.0 KiB
PHP
47 lines
1.0 KiB
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
require_once('modules/Fax/Fax.php');
|
|
global $adb;
|
|
|
|
$local_log =& LoggerManager::getLogger('FaxAjax');
|
|
|
|
$ajaxaction = $_REQUEST["ajxaction"];
|
|
if($ajaxaction == "DETAILVIEW")
|
|
{
|
|
$crmid = $_REQUEST["recordid"];
|
|
$tablename = $_REQUEST["tableName"];
|
|
$fieldname = $_REQUEST["fldName"];
|
|
$fieldvalue = $_REQUEST["fieldValue"];
|
|
if($crmid != "")
|
|
{
|
|
$modObj = CRMEntity::getInstance('Fax');
|
|
$modObj->retrieve_entity_info($crmid,"Fax");
|
|
$modObj->column_fields[$fieldname] = $fieldvalue;
|
|
$modObj->id = $crmid;
|
|
$modObj->mode = "edit";
|
|
$modObj->save("Fax");
|
|
if($modObj->id != "")
|
|
{
|
|
echo ":#:SUCCESS";
|
|
}else
|
|
{
|
|
echo ":#:FAILURE";
|
|
}
|
|
}else
|
|
{
|
|
echo ":#:FAILURE";
|
|
}
|
|
}
|
|
elseif($_REQUEST['ajaxmode'] == 'qcreate')
|
|
{
|
|
require_once('quickcreate.php');
|
|
}
|
|
else
|
|
{
|
|
require_once('include/Ajax/CommonAjax.php');
|
|
}
|
|
?>
|