Example #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";
	}
}
?>
Example #2
0
<style type="text/css">
		input.text { width:95%; padding: .4em; }
		select.text { width:100%; padding: .2em; }
		fieldset { padding:0; border:0; margin-top:25px; }
		h1 { font-size: 1.2em; margin: .6em 0; }
		div#users-contain {  width: 610px; margin: 20px 0; }
		div#users-contain table { margin: 1em 0; border-collapse: collapse; width: 600px; }
		div#users-contain table td, div#users-contain table th { border: 1px solid #eee; padding: .6em 10px; text-align: left; font-size:0.85em;  }
		.ui-button { outline: 0; margin:0; padding: .1em ; text-decoration:none;  !important; cursor:pointer; position: relative; text-align: center; }
		.ui-dialog .ui-state-highlight, .ui-dialog .ui-state-error { padding: .3em;  }
		#searchtable th{ font-size:0.85em;}
		#searchtable select, #searchtable input{font-size:0.85em;}
	</style>
<?php 

$objCustodian=new CustodianClass($db);

if(isset($_POST['Search']) && $_POST['Search']=="Search"){
	if(isset($_POST['search_custid']) && $_POST['search_custid']!=""){
		$objCustodian->custodianid=$_POST['search_custid'];
	}
	
	if(isset($_POST['search_cust']) && $_POST['search_cust']!=""){
		$objCustodian->custodian=$_POST['search_cust'];
	}
	
	if(isset($_POST['search_ta']) && $_POST['search_ta']!=""){
		$objCustodian->transferagent=$_POST['search_ta'];
	}
	
}
Example #3
0
require_once('BLL/TransferAgentBLL.php');
require_once('BLL/CustodianBLL.php');
require_once('BLL/RedemptionDetailsBLL.php');
require_once('BLL/RedemptionFeesBLL.php');

$objFund=new FundClass($db);
$objISIN=new IsinClass($db);
$objCurrency=new CurrencyClass($db);
$objFundAdvisor=new FundAdvisorClass($db);
$objFundAuditorClass=new FundAuditorClass($db);
$arrayFundAuditorClass=$objFundAuditorClass->GetFundAuditorUsingArray();
$arrayFundAdvisor=$objFundAdvisor->GetFundAdvisorUsingArray();
$arrayCurrency=$objCurrency->GetCurrencyUsingArray();
$arrayTransferAgent1=new TransferAgentClass($db);
$arrayTransferAgent=$arrayTransferAgent1->GetTransferAgentUsingArray();
$objCustodian=new CustodianClass($db);
$arrayCustodian=$objCustodian->GetCustodianUsingArray();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de-ch" lang="de-ch">
  <head>
   <title>Vurman - Spectrum Funds</title>
    <meta name="keywords" content="Fund Services, Fund Settlement, Hedge Funds, Offshore Funds, Subscription, Redemption">
    <meta name="JOB_DESCRIPTION" content="Fund Services, Fund Settlement, Hedge Funds, Offshore Funds, Subscription, Redemption">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link rel="Stylesheet" href="css/styles.css" />
    <script src="js/jquery-1.3.2.min.js" type="text/javascript"></script>
	<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
    <script type="text/javascript" src="js/common.js"></script>
    <!--<script src="js/fund-manage.js" type="text/javascript"></script>-->
   <style type="text/css">/*body
Example #4
0
<?php 
require_once('../../core/connect.php');
require_once('../../core/CoreClass.php');
require_once('../../BLL/CustodianBLL.php');

$userid="";
$name="";
$email="";
$loginid="";
$pass="";
$active=0;
$msg="";

$objCustodian=new CustodianClass($db);

if(isset($_POST['custodian']) && $_POST['custodian']!=""){
	$custodian=$_POST['custodian'];
	$objCustodian->custodian=$custodian;
}
else{
	echo "Custodian is Blank.";
	return;
}


if(isset($_POST['custodianid'])&&$_POST['custodianid']!=""){
	 $custodianid=$_POST['custodianid'];
	 $objCustodian->custodianid=$custodianid;
}
else{
	echo "Custodian Id is Blank.";
Example #5
0
			$subArr=$subObj->SearchSubscriptionFee();
			
			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();
			}
		}

	}
}