예제 #1
0
    InvestmentProfiles::deleteInvestorProfiles($id);
    Notes::deleteInvestorNotes($id);
    Assets::deleteInvestorAssets($id);
    Logs::deleteInvestorLogs($id);
    Contacts::deleteInvestorContacts($id);
    if ($investorResult > 0) {
        $response->json(Result::success('Investor Deleted.'));
    } else {
        $response->json(Result::error('Investor not Deleted'));
    }
});
$this->respond(['GET', 'POST'], '/get/[i:id]', function ($request, $response, $service, $app) {
    $id = $request->param('id');
    $investorData = Investors::getInvestor($id);
    $investorContacts = Contacts::getInvestorContacts($id);
    $investorAssets = Assets::getInvestorAssets($id);
    $investorProfiles = InvestmentProfiles::getInvestorProfiles($id);
    $investorBuyLogs = Logs::getInvestorLogs($id);
    $investorSellLogs = Logs::getInvestorAssetsLogs($id);
    $investorConversations = Conversations::getInvestorConversations($id);
    $investorNotes = Notes::getInvestorNotes($id);
    $result = array("investorData" => $investorData, "investorContacts" => $investorContacts, "investorAssets" => $investorAssets, "investorProfiles" => $investorProfiles, "investorBuyLogs" => $investorBuyLogs, "investorSellLogs" => $investorSellLogs, "investorConversations" => $investorConversations, "investorNotes" => $investorNotes);
    if ($investorData) {
        $response->json(Result::success('', $result));
    } else {
        $response->json(Result::error('Investor not found'));
    }
});
$this->respond(['GET', 'POST'], '/get/all', function ($request, $response, $service, $app) {
    $result = Investors::getAllInvestors();
    $response->json(Result::success('', $result));
예제 #2
0
 public static function getInvestorAssetsLogs($investorID)
 {
     $assets = Assets::getInvestorAssets($investorID);
     $ans = [];
     foreach ($assets as $asset) {
         $logs = Logs::getAssetInvestLogs($asset['id']);
         $ans = array_merge($ans, $logs);
     }
     return $ans;
 }