Tul xxx Tul
User / IP
:
216.73.216.217
Host / Server
:
45.84.207.204 / aircan.me
System
:
Linux lt-bnk-web1726.main-hosting.eu 5.14.0-611.36.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 3 11:23:52 EST 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
u931257429
/
domains
/
aircan.me
/
public_html
/
vendefacil
/
views
/
reportes
/
Viewing: pdf_traslados.php
<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Reporte de Traslados de Inventario</title> <style> body { font-family: Arial, sans-serif; font-size: 11px; color: #333; } .header { text-align: center; margin-bottom: 20px; } .header img { max-height: 80px; margin-bottom: 10px; } .header h2 { margin: 0 0 5px 0; color: #2c3e50; text-transform: uppercase; font-size: 20px; } .header p { margin: 2px 0; color: #555; font-size: 12px; } .header h3 { margin: 15px 0 5px 0; font-size: 16px; color: #333; } .divider { border-top: 2px solid #2196F3; margin-bottom: 20px; margin-top: 10px; } table { width: 100%; border-collapse: collapse; margin-bottom: 20px; } th { background-color: #2c3e50; color: white; padding: 8px 5px; text-align: left; font-weight: bold; font-size: 10px; text-transform: uppercase; } td { padding: 6px 5px; border-bottom: 1px solid #eee; font-size: 10px; } .text-right { text-align: right; } .text-center { text-align: center; } .total-row { font-weight: bold; background-color: #f9f9f9; } .total-row td { border-top: 2px solid #ddd; padding: 8px 5px; } </style> </head> <body> <div class="header"> <?php $logoSrc = 'assets/images/logo.png'; if (!empty($data['empresa']['logo']) && file_exists('assets/images/' . $data['empresa']['logo'])) { $logoSrc = 'assets/images/' . $data['empresa']['logo']; } $logoPath = $_SERVER['DOCUMENT_ROOT'] . '/' . basename(BASE_URL) . '/' . $logoSrc; if (!file_exists($logoPath)) { $logoPath = 'assets/images/logo.png'; } if (file_exists($logoPath)) { $type = pathinfo($logoPath, PATHINFO_EXTENSION); $dataImg = file_get_contents($logoPath); $base64 = 'data:image/' . $type . ';base64,' . base64_encode($dataImg); echo '<img src="' . $base64 . '" alt="Logo">'; } ?> <h2><?php echo htmlspecialchars($data['empresa']['nombre'] ?? 'EMPRESA'); ?></h2> <p><strong>RUC:</strong> <?php echo htmlspecialchars($data['empresa']['ruc'] ?? 'N/A'); ?></p> <p><strong>Dirección:</strong> <?php echo htmlspecialchars($data['empresa']['direccion'] ?? 'N/A'); ?></p> <p><strong>Teléfono:</strong> <?php echo htmlspecialchars($data['empresa']['telefono'] ?? 'N/A'); ?></p> <h3>VendeFácil - Traslados de Inventario</h3> <p>Periodo: Inicio al <?php echo date('d/m/Y'); ?></p> <div class="divider"></div> </div> <table> <thead> <tr> <th>CÓDIGO</th> <th>CATEGORÍA</th> <th>PRODUCTO</th> <th>ORIGEN</th> <th>DESTINO</th> <th class="text-right">CANTIDADES</th> <th class="text-right">PRECIO COSTO</th> <th class="text-right">COSTO TOTAL</th> </tr> </thead> <tbody> <?php $suma_cantidades = 0; $suma_costo_total = 0; if(!empty($data['lista'])) { foreach ($data['lista'] as $row) { $suma_cantidades += $row['cantidad'] ?? 0; $suma_costo_total += $row['costo_total'] ?? 0; ?> <tr> <td><?php echo isset($row['codigo']) ? htmlspecialchars($row['codigo']) : ''; ?></td> <td><?php echo isset($row['categoria']) ? htmlspecialchars($row['categoria']) : ''; ?></td> <td><?php echo isset($row['producto']) ? htmlspecialchars($row['producto']) : ''; ?></td> <td><?php echo isset($row['origen']) ? htmlspecialchars($row['origen']) : ''; ?></td> <td><?php echo isset($row['destino']) ? htmlspecialchars($row['destino']) : ''; ?></td> <td class="text-right"><?php echo isset($row['cantidad']) ? htmlspecialchars($row['cantidad']) : '0'; ?></td> <td class="text-right"><?php echo isset($row['precio_costo']) ? number_format((float)$row['precio_costo'], 2) : '0.00'; ?></td> <td class="text-right"><?php echo isset($row['costo_total']) ? number_format((float)$row['costo_total'], 2) : '0.00'; ?></td> </tr> <?php } } else { ?> <tr> <td colspan="8" class="text-center">No hay datos disponibles en el rango de fechas seleccionado.</td> </tr> <?php } ?> </tbody> <tfoot> <tr class="total-row"> <td colspan="5" class="text-right">TOTALES</td> <td class="text-right"><?php echo $suma_cantidades; ?></td> <td class="text-right"></td> <td class="text-right"><?php echo number_format($suma_costo_total, 2); ?></td> </tr> </tfoot> </table> </body> </html>
Coded With 💗 by
0x6ick