$objTransfer->to_date=$_POST['to_date'];
	}
	
	
	
	
	echo $objTransfer->GetTransferUsingJSON();
	}
	if(isset($_POST['Search']) && $_POST['Search']=="Search"){
?>

<?php 
		echo $objISIN->GetISINJSON();
		echo $objCurrency->GetCurrencyJSON();
		echo $objUser->GetUserSUsingJSON();
		$objCustodyAC=new Custody_ACClass($db);
		echo $objCustodyAC->GetCustodyACJSON();
	}
?>
</head>
<body>
    <div id="main_cont">
        <div id="title">
            <img src="logo.jpg" alt="" /></div>
         <div id="left">
			<?php require_once('include/menu-left-client.php'); ?>
        </div>
     


<input type='hidden' name='type' value='purchase'/>        
require_once('core/CoreClass.php');
require_once('BLL/IsinBLL.php');
require_once('BLL/CurrencyBLL.php');
require_once('BLL/CustodianBLL.php');
require_once('BLL/Custody_ACBLL.php');
require_once('BLL/CurrencyBLL.php');
require_once('BLL/Transfer_BLL.php');
require_once('BLL/UserBLL.php');

$objCurrency=new CurrencyClass($db);
$arrCurrency=$objCurrency->GetCurrencyUsingArray();

$objISIN=new IsinClass($db);
$arrISIN=$objISIN->GetIsinUsingArray();

$objCoustodyAC=new Custody_ACClass($db);
$arrCustodyAC=$objCoustodyAC->GetCustody_ACUsingArray();

$ip=$_SERVER['REMOTE_ADDR'];

if(isset($_POST['GetFund'])){
$msg="";
	$clientid=$_POST['Client-ID'];
	
	$objUser=new UserClass($db);
	$objUser->login=$clientid;
	$arrUser=$objUser->SearchUser();
	
	if(sizeof($arrUser)>0)
	{
		//echo $_POST['Settlement_Date'];
示例#3
0
		$msg="Please enter CLIENT-ID.";

	}	

}

$objUser1=new UserClass($db);

$objUser1->id=$_SESSION['login'];

$arrUser1=$objUser1->SearchUser();



$objCoustodyAC=new Custody_ACClass($db);

$objCoustodyAC->id_client=$arrUser1[0]['id'];

$arrCustodyAC=$objCoustodyAC->SearchCustody_AC();
?>

<!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="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" />
示例#4
0
<?php 
if(isset($_POST['id_client']))
{
	require_once('../core/connect.php');
	require_once('../core/CoreClass.php');
	require_once('../BLL/Custody_ACBLL.php');
	require_once('../BLL/UserBLL.php');
	
	$objUser=new UserClass($db);
	$objUser->clientid=$_POST['id_client'];
	$arrUser=$objUser->SearchUser();
	
	if(sizeof($arrUser)>0)
	{	
	
		$objCustAC=new Custody_ACClass($db);
		$objCustAC->id_client=$arrUser[0]['id'];
		$arrCustAC=$objCustAC->SearchCustody_AC();
		
		if(sizeof($arrCustAC)>0)
		{
			for($i=0;$i<sizeof($arrCustAC);$i++)
			{
				echo $arrCustAC[$i]['id'].",".$arrCustAC[$i]['name']."|";
			}
		}
		else
		{
			echo "0";
		}
	}