Exemplo n.º 1
0
<?php 
if(isset($_POST['custodianid']) && $_POST['custodianid']!="")
{
	require_once('../core/connect.php');
	require_once('../core/CoreClass.php');
	require_once('../BLL/CustodianBLL.php');
	
	$custodianid=$_POST['custodianid'];
	$objCustodian=new CustodianClass($db);
	$objCustodian->custid=$custodianid;
	$arrCustodian=$objCustodian->SearchCustodian();
	if(sizeof($arrCustodian)>0)
	{
		echo $arrCustodian[0]['counterparty_name']."|".$arrCustodian[0]['bic_counterparty']."|".$arrCustodian[0]['counterparty_ac_custodian'];
		//echo $arrCustodian[0]['custodian']."|".$arrCustodian[0]['biccustodian']."|".$arrCustodian[0]['acwithcust']."|".$arrCustodian[0]['transferagent']."|".$arrCustodian[0]['bicta']."|".$arrCustodian[0]['acwithta'];
	}
	else
	{
		echo "Not Found";
	}
}
?>
Exemplo n.º 2
0
			if(isset($redArr) && sizeof($redArr)>0)
			{
				$redFeeObj=new RedemptionFeesClass($db);
				$redFeeObj->redemption_details_id=$redArr[0]["id"];
				$redFeeArr=$redFeeObj->SearchRedemptionFees();
			}
			
			if(sizeof($fundArr)>0)
			{
				$transferObj=new TransferAgentClass($db);
				$transferObj->transfer_agent=$fundArr[0]["transfer_agent_id"];
				$transferArr=$transferObj->SearchTransferAgent();
				
				$custObj=new CustodianClass($db);
				$custObj->custodian=$fundArr[0]["custodian_id"];
				$custArr=$custObj->SearchCustodian();
				
				$fundAdvObj=new FundAdvisorClass($db);
				$fundAdvObj->fund_advisor=$fundArr[0]["fund_advisor_id"];
				$fundAdvArr=$fundAdvObj->SearchFundAdvisor();
				
				$fundAudObj=new FundAuditorClass($db);
				$fundAudObj->fund_auditor=$fundArr[0]["fund_auditor_id"];
				$fundAudArr=$fundAudObj->SearchFundAuditor();
			}
		}

	}
}
?>