Visão Geral

Saldo Disponível
R$
setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); return $pdo; } catch (PDOException $e) { die("Erro ao conectar ao banco de dados: " . $e->getMessage()); } } // Função para calcular o total das transações do usuário (DEPOSIT e INTERNAL_TRANSFER) function getUserBalance($pdo, $user_id) { // Consulta para somar transações DEPOSIT e INTERNAL_TRANSFER com external_id igual ao user_id $stmt = $pdo->prepare(" SELECT SUM(amount) AS total FROM transactions WHERE status = 'PAID' AND ( (type = 'DEPOSIT' AND user_id = :user_id) OR (type = 'INTERNAL_TRANSFER' AND external_id = :user_id) ) "); $stmt->bindParam(':user_id', $user_id, PDO::PARAM_INT); $stmt->execute(); // Obter o total diretamente da soma $result = $stmt->fetch(PDO::FETCH_ASSOC); return $result['total'] ?? 0; // Retorna 0 se não houver transações } // Função para calcular a média das transações do usuário function getUserAverageTransaction($pdo, $user_id) { $stmt = $pdo->prepare("SELECT amount FROM transactions WHERE (user_id = :user_id OR external_id = :user_id) AND status = 'PAID'"); $stmt->bindParam(':user_id', $user_id); $stmt->execute(); // Inicializando variáveis para soma e contagem $totalAmount = 0; $transactionCount = 0; // Somar os valores das transações e contar as transações while ($transaction = $stmt->fetch(PDO::FETCH_ASSOC)) { $totalAmount += $transaction['amount']; $transactionCount++; } // Calcular a média, evitando divisão por zero if ($transactionCount > 0) { return $totalAmount / $transactionCount; } else { return 0; // Se não houver transações, a média é 0 } } // Função para contar o total de transações do usuário function getUserTransactionCount($pdo, $user_id) { $stmt = $pdo->prepare("SELECT COUNT(*) FROM transactions WHERE (user_id = :user_id OR external_id = :user_id) AND status = 'PAID'"); $stmt->bindParam(':user_id', $user_id); $stmt->execute(); return $stmt->fetchColumn(); } function validarPixPendente($pdo, $user_id) { $stmt = $pdo->prepare("SELECT * FROM transactions WHERE (user_id = :user_id) AND status = 'PENDING'"); $stmt->bindParam(':user_id', $user_id); $stmt->execute(); $dados = $stmt->fetchAll(PDO::FETCH_ASSOC); foreach($dados as $key => $dado){ $PRONTTUS_URL = getenv('PRONTTUS_URL'); $PRONTTUS_CLIENT_ID = getenv('PRONTTUS_CLIENT_ID'); $PRONTTUS_CLIENT_SECRET = getenv('PRONTTUS_CLIENT_SECRET'); $APP_URL = getenv('APP_URL'); $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => $PRONTTUS_URL . 'payment/' . trim($dado['external_id']), CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'GET', CURLOPT_HTTPHEADER => array( 'x-client-id: ' . $PRONTTUS_CLIENT_ID, 'x-client-secret: ' . $PRONTTUS_CLIENT_SECRET, 'Content-Type: application/json' ), )); $response = curl_exec($curl); curl_close($curl); $responsePix = json_decode($response, true); } var_dump('tessssteeee',json_encode($responsePix)); die; } // Conectar ao banco de dados $pdo = connectDb245(); // Recuperar o usuário logado if (isset($_SESSION['user_id'])) { $user_id = $_SESSION['user_id']; // Calcular o total de faturamento $totalAmount = getUserBalance($pdo, $user_id); // Calcular a média do ticket $averageAmount = getUserAverageTransaction($pdo, $user_id); // Contar o número total de transações $transactionCount = getUserTransactionCount($pdo, $user_id); // validarPixPendente($pdo, $user_id); } else { // Se o usuário não estiver logado $totalAmount = 0; $averageAmount = 0; $transactionCount = 0; } ?>
Faturamento
R$
Ticket Médio
R$
Quantidade de Transações
Total Transacionado Por Período
connect_error) { die("Falha na conexão: " . $mysqli->connect_error); } return $mysqli; } $mysqli = connectdb221(); function getMonthlyReport($userId) { global $mysqli; // Data atual $currentMonth = date('Y-m'); // Ex: 2024-11 // Consulta SQL para pegar as transações do mês atual $query = " SELECT * FROM transactions WHERE (user_id = ? COLLATE utf8mb4_unicode_ci OR external_id = ? COLLATE utf8mb4_unicode_ci) AND DATE_FORMAT(created_at, '%Y-%m') = ? COLLATE utf8mb4_unicode_ci AND status = 'PAID' ORDER BY created_at DESC "; // Preparar a consulta $stmt = $mysqli->prepare($query); if (!$stmt) { die("Erro ao preparar a consulta SQL: " . $mysqli->error); } // Passando os parâmetros corretamente $stmt->bind_param('sss', $userId, $userId, $currentMonth); // 'sss' para três parâmetros de string $stmt->execute(); $result = $stmt->get_result(); // Verificando se a consulta retornou dados if ($result === false) { die("Erro ao executar a consulta: " . $mysqli->error); } // Inicializando variáveis para somar as entradas e saídas $entradasPix = 0.00; $entradasTransferencia = 0.00; $saidasPixApi = 0.00; $saidasTransferencia = 0.00; $taxas = 0.00; $taxasWithdraw = 0.00; // Loop para somar as transações while ($row = $result->fetch_assoc()) { // Verificando o tipo de transação e se é uma transação interna if ($row['api'] == 1 && $row['type'] != 'INTERNAL_TRANSFER') { // PIX API if ($row['type'] == 'DEPOSIT') { $entradasPix += $row['amount']; } elseif ($row['type'] == 'WITHDRAW') { $saidasPixApi += $row['amount']; $taxasWithdraw += $row['tax']; } } else { // Transferência ou INTERNAL_TRANSFER if ($row['type'] == 'DEPOSIT') { $entradasTransferencia += $row['amount']; } elseif ($row['type'] == 'WITHDRAW') { $saidasTransferencia += $row['amount']; $taxasWithdraw += $row['tax']; } elseif ($row['type'] == 'INTERNAL_TRANSFER') { // Verificando se o user_id da transação é o mesmo que o da sessão if ($row['user_id'] != $userId) { // Se o user_id for o mesmo, consideramos como DEPOSIT $entradasTransferencia += $row['amount']; } else { // Caso contrário, consideramos como WITHDRAW $saidasTransferencia += $row['amount']; $taxasWithdraw += $row['tax']; } } } // Somando as taxas $taxas += $row['tax']; } // Calculando o total de entradas e saídas $totalEntradas = $entradasPix + $entradasTransferencia; $totalSaidas = $saidasPixApi + $saidasTransferencia + $taxasWithdraw; $saldoMes = $totalEntradas - $totalSaidas; return [ 'entradasPix' => $entradasPix, 'entradasTransferencia' => $entradasTransferencia, 'saidasPixApi' => $saidasPixApi, 'saidasTransferencia' => $saidasTransferencia, 'taxas' => $taxasWithdraw, 'totalEntradas' => $totalEntradas, 'totalSaidas' => $totalSaidas, 'saldoMes' => $saldoMes ]; } $userId = $_SESSION['user_id']; $report = getMonthlyReport($userId); if (!$report) { echo "Erro ao carregar o relatório. Verifique os logs."; exit; } ?>
Relatório do Mês Atual
Entradas Valor
PIX R$
Transferência R$
Total Entradas R$
Saídas Valor
PIX API R$
Transferência R$
Taxas R$
Total Saídas R$

SALDO DO MÊS: R$

Resumo Ùltimas Transações
connect_error) { die("Falha na conexão: " . $mysqli->connect_error); } return $mysqli; } $mysqli = connectdb22(); // Função para buscar as últimas 5 transações de um usuário específico e somar entradas e saídas function getTransactionsAndTotal($userId) { global $mysqli; // Consulta SQL para pegar as últimas 5 transações $query = "SELECT * FROM transactions WHERE status = 'PAID' AND user_id = ? OR external_id = ? ORDER BY created_at DESC LIMIT 5"; $stmt = $mysqli->prepare($query); if (!$stmt) { die("Erro ao preparar a consulta SQL: " . $mysqli->error); } $stmt->bind_param('ii', $userId, $userId); $stmt->execute(); $result = $stmt->get_result(); // Inicializando variáveis para somar as entradas e saídas $entradas = 0.00; $saidas = 0.00; // Criando um array para armazenar as transações $transactions = []; while ($row = $result->fetch_assoc()) { // Adicionando a transação à lista de transações $transactions[] = [ 'nome' => $row['nome'], 'document' => $row['document'], 'amount' => $row['amount'], 'type' => $row['type'], 'external_id' => $row['external_id'], 'user_id' => $row['user_id'] ]; // Somando as entradas e saídas conforme o tipo da transação if ($row['type'] == 'DEPOSIT') { $entradas += $row['amount']; } elseif ($row['type'] == 'WITHDRAW') { $saidas += $row['amount']; } elseif ($row['type'] == 'INTERNAL_TRANSFER') { // Se for uma transferência interna, verificar o remetente e destinatário if ($row['external_id'] == $userId) { // Se o user_id for o destinatário (recebendo), é uma entrada $entradas += $row['amount']; } else { // Se o user_id for o remetente (enviando), é uma saída $saidas += $row['amount']; } } } return ['transactions' => $transactions, 'entradas' => $entradas, 'saidas' => $saidas]; } // Exemplo de ID de usuário (pode vir de uma sessão ou ser dinâmico) $userId = $_SESSION['user_id']; // Exemplo de ID de usuário // Obtendo as transações e somando as entradas e saídas $result = getTransactionsAndTotal($userId); $transactions = $result['transactions']; $totalEntradas = $result['entradas']; $totalSaidas = $result['saidas']; ?>