* SPDX-License-Identifier: AGPL-3.0-only ************************************/ global $currentModule; $focus = CRMEntity::getInstance($currentModule); $record = vtlib_purify($_REQUEST['record']); $module = vtlib_purify($_REQUEST['module']); $return_module = vtlib_purify($_REQUEST['return_module']); $return_action = vtlib_purify($_REQUEST['return_action']); $parenttab = getParentTab(); $return_id = vtlib_purify($_REQUEST['return_id']); //Added to fix 4600 $url = getBasic_Advance_SearchURL(); if(!isset($record)) die(getTranslatedString('ERR_DELETE_RECORD')); if($return_module!="Products" || ($return_module=="Products" && empty($return_id))) DeleteEntity($currentModule, $return_module, $focus, $record, $return_id); else $focus->deleteProduct2ProductRelation($record, $return_id, $_REQUEST['is_parent']); $parenttab = getParentTab(); if(isset($_REQUEST['activity_mode'])) $url .= '&activity_mode='.vtlib_purify($_REQUEST['activity_mode']); header("Location: index.php?module=$return_module&action=$return_action&record=$return_id&parenttab=$parenttab&relmodule=$module".$url);