Cambios
This commit is contained in:
@@ -418,6 +418,7 @@ function guardar_usuario()
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
$conn = getConnection();
|
||||
|
||||
// 1. Capturar y validar datos
|
||||
|
||||
@@ -2,6 +2,12 @@
|
||||
require_once __DIR__ . '/../helpers/session.php';
|
||||
require_once __DIR__ . '/../../config/database.php';
|
||||
require_once __DIR__ . '/../helpers/crypto.php';
|
||||
require_once __DIR__ . '/../../vendor/autoload.php';
|
||||
|
||||
use PHPMailer\PHPMailer\PHPMailer;
|
||||
use PHPMailer\PHPMailer\Exception;
|
||||
|
||||
loadEnv();
|
||||
|
||||
// Función para obtener catálogos visibles del usuario
|
||||
function obtenerCatalogosVisibles($idUsuario)
|
||||
@@ -228,6 +234,21 @@ function vincular()
|
||||
}
|
||||
}
|
||||
|
||||
// Obtener información del importador y la agencia para el correo
|
||||
$infoSql = "SELECT
|
||||
u.nombre AS nombre_importador, u.email AS email_importador,
|
||||
a.nombre_agencia, a.email AS email_agencia,
|
||||
admin.email AS admin_email, admin.nombre AS admin_nombre
|
||||
FROM usuarios_sistema u
|
||||
CROSS JOIN agencias_aduanales a
|
||||
LEFT JOIN usuarios_sistema admin
|
||||
ON a.id_administrador = admin.id_usuario
|
||||
WHERE u.id_usuario = ?
|
||||
AND a.id_agencia = ?
|
||||
";
|
||||
$infoStmt = sqlsrv_query($conn, $infoSql, [$id_importador, $id_agencia]);
|
||||
$info = sqlsrv_fetch_array($infoStmt, SQLSRV_FETCH_ASSOC);
|
||||
|
||||
// Insertar la nueva solicitud
|
||||
$sql = "INSERT INTO solicitudes_vinculacion
|
||||
(id_importador, id_agencia, mensaje, estado, fecha_solicitud)
|
||||
@@ -237,6 +258,48 @@ function vincular()
|
||||
$stmt = sqlsrv_prepare($conn, $sql, $params);
|
||||
|
||||
if ($stmt && sqlsrv_execute($stmt)) {
|
||||
// Enviar notificación al administrador de la agencia
|
||||
if (!empty($info['admin_email'])) {
|
||||
$mail = new PHPMailer(true);
|
||||
try {
|
||||
$mail->isSMTP();
|
||||
$mail->Host = 'secure.emailsrvr.com';
|
||||
$mail->SMTPAuth = true;
|
||||
$mail->Username = 'noreply@aduanasoft.com.mx';
|
||||
$mail->Password = $_ENV['SMTP_PASS'];
|
||||
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
|
||||
$mail->Port = 587;
|
||||
|
||||
$mail->setFrom('noreply@aduanasoft.com.mx', 'SIIH | Sistema Integral para Importadores de Hidrocarburos');
|
||||
$mail->addAddress($info['admin_email']);
|
||||
$mail->CharSet = 'UTF-8';
|
||||
$mail->isHTML(true);
|
||||
$mail->Subject = 'Nueva solicitud de vinculación en SIIH';
|
||||
|
||||
$mail->Body = "
|
||||
<div style='font-family: Segoe UI, sans-serif; background-color: #f4f6f9; padding: 40px;'>
|
||||
<div style='max-width: 600px; margin: auto; background: #fff; border: 1px solid #ddd; border-radius: 10px; overflow: hidden;'>
|
||||
<div style='background: linear-gradient(to right, #003366, #0055A5); padding: 20px; text-align: center;'>
|
||||
<h2 style='color: white;'>¡Nueva solicitud de vinculación!</h2>
|
||||
</div>
|
||||
<div style='padding: 30px; color: #333; font-size: 16px;'>
|
||||
<p>El importador <strong>{$info['nombre_importador']}</strong> ha solicitado vincularse con su agencia <strong>{$info['nombre_agencia']}</strong>.</p>
|
||||
<p><strong>Correo del importador:</strong> {$info['email_importador']}</p>
|
||||
<p>Por favor, revise la solicitud en su panel de administración para aprobarla o rechazarla.</p>
|
||||
</div>
|
||||
<div style='background: #e9ecef; text-align: center; padding: 15px; font-size: 13px; color: #666;'>
|
||||
© " . date('Y') . " SIIH · Sistema Integral para Importadores de Hidrocarburos
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
";
|
||||
|
||||
$mail->send();
|
||||
} catch (Exception $e) {
|
||||
error_log("Error al enviar correo: " . $mail->ErrorInfo);
|
||||
}
|
||||
}
|
||||
|
||||
header('Location: /IMPORTADORES/vinculaciones/nuevaVinculacion?success=sended_request');
|
||||
exit;
|
||||
} else {
|
||||
@@ -257,6 +320,18 @@ function cancelarVinculacion()
|
||||
$id_importador = $_SESSION['usuario_id'];
|
||||
$id_agencia = (int) $_GET['id'];
|
||||
|
||||
// Obtener información para el correo
|
||||
$infoSql = "SELECT
|
||||
u.nombre AS nombre_importador, u.email AS email_importador,
|
||||
a.nombre_agencia
|
||||
FROM solicitudes_vinculacion sv
|
||||
JOIN usuarios_sistema u ON sv.id_importador = u.id_usuario
|
||||
JOIN agencias_aduanales a ON sv.id_agencia = a.id_agencia
|
||||
WHERE sv.id_importador = ? AND sv.id_agencia = ? AND sv.estado = 'PENDIENTE'";
|
||||
|
||||
$infoStmt = sqlsrv_query($conn, $infoSql, [$id_importador, $id_agencia]);
|
||||
$info = sqlsrv_fetch_array($infoStmt, SQLSRV_FETCH_ASSOC);
|
||||
|
||||
$sql = "UPDATE solicitudes_vinculacion
|
||||
SET estado = 'CANCELADA', fecha_respuesta = GETDATE()
|
||||
WHERE id_importador = ?
|
||||
@@ -267,6 +342,48 @@ function cancelarVinculacion()
|
||||
$stmt = sqlsrv_prepare($conn, $sql, $params);
|
||||
|
||||
if ($stmt && sqlsrv_execute($stmt)) {
|
||||
// Enviar notificación al importador
|
||||
if (!empty($info['email_importador'])) {
|
||||
$mail = new PHPMailer(true);
|
||||
try {
|
||||
$mail->isSMTP();
|
||||
$mail->Host = 'secure.emailsrvr.com';
|
||||
$mail->SMTPAuth = true;
|
||||
$mail->Username = 'noreply@aduanasoft.com.mx';
|
||||
$mail->Password = $_ENV['SMTP_PASS'];
|
||||
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
|
||||
$mail->Port = 587;
|
||||
|
||||
$mail->setFrom('noreply@aduanasoft.com.mx', 'SIIH | Sistema Integral para Importadores de Hidrocarburos');
|
||||
$mail->addAddress($info['email_importador']);
|
||||
$mail->CharSet = 'UTF-8';
|
||||
$mail->isHTML(true);
|
||||
$mail->Subject = 'Cancelación de solicitud de vinculación en SIIH';
|
||||
|
||||
$mail->Body = "
|
||||
<div style='font-family: Segoe UI, sans-serif; background-color: #f4f6f9; padding: 40px;'>
|
||||
<div style='max-width: 600px; margin: auto; background: #fff; border: 1px solid #ddd; border-radius: 10px; overflow: hidden;'>
|
||||
<div style='background: linear-gradient(to right, #003366, #0055A5); padding: 20px; text-align: center;'>
|
||||
<h2 style='color: white;'>Solicitud cancelada</h2>
|
||||
</div>
|
||||
<div style='padding: 30px; color: #333; font-size: 16px;'>
|
||||
<p>Estimado/a <strong>{$info['nombre_importador']}</strong>,</p>
|
||||
<p>Has cancelado tu solicitud de vinculación con la agencia <strong>{$info['nombre_agencia']}</strong>.</p>
|
||||
<p>Si esto fue un error, puedes volver a solicitar la vinculación desde tu panel de importador.</p>
|
||||
</div>
|
||||
<div style='background: #e9ecef; text-align: center; padding: 15px; font-size: 13px; color: #666;'>
|
||||
© " . date('Y') . " SIIH · Sistema Integral para Importadores de Hidrocarburos
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
";
|
||||
|
||||
$mail->send();
|
||||
} catch (Exception $e) {
|
||||
error_log("Error al enviar correo: " . $mail->ErrorInfo);
|
||||
}
|
||||
}
|
||||
|
||||
header('Location: /IMPORTADORES/vinculaciones/nuevaVinculacion?success=cancelled');
|
||||
exit;
|
||||
}
|
||||
@@ -296,12 +413,16 @@ function desvincularUsuario()
|
||||
|
||||
// 1. Verificar que la relación existe y pertenece a la agencia del admin
|
||||
$sqlVerificar = "SELECT
|
||||
ia.*, u.id_usuario, u.nombre as importador_nombre, aa.nombre_agencia
|
||||
ia.*, u.id_usuario, u.nombre as importador_nombre, u.email as importador_email,
|
||||
aa.nombre_agencia, aa.email as agencia_email,
|
||||
admin.email as admin_email, admin.nombre as admin_nombre
|
||||
FROM importador_agencia ia
|
||||
INNER JOIN usuarios_sistema u
|
||||
ON ia.id_importador = u.id_usuario
|
||||
INNER JOIN agencias_aduanales aa
|
||||
ON ia.id_agencia = aa.id_agencia
|
||||
LEFT JOIN usuarios_sistema admin
|
||||
ON aa.id_administrador = admin.id_usuario
|
||||
WHERE ia.id_relacion = ?
|
||||
AND ia.id_importador = ?
|
||||
";
|
||||
@@ -358,6 +479,93 @@ function desvincularUsuario()
|
||||
}
|
||||
}
|
||||
|
||||
// Enviar notificaciones por correo
|
||||
if (!empty($relacion['importador_email'])) {
|
||||
// Notificación al importador
|
||||
$mailImportador = new PHPMailer(true);
|
||||
try {
|
||||
$mailImportador->isSMTP();
|
||||
$mailImportador->Host = 'secure.emailsrvr.com';
|
||||
$mailImportador->SMTPAuth = true;
|
||||
$mailImportador->Username = 'noreply@aduanasoft.com.mx';
|
||||
$mailImportador->Password = $_ENV['SMTP_PASS'];
|
||||
$mailImportador->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
|
||||
$mailImportador->Port = 587;
|
||||
|
||||
$mailImportador->setFrom('noreply@aduanasoft.com.mx', 'SIIH | Sistema Integral para Importadores de Hidrocarburos');
|
||||
$mailImportador->addAddress($relacion['importador_email']);
|
||||
$mailImportador->CharSet = 'UTF-8';
|
||||
$mailImportador->isHTML(true);
|
||||
$mailImportador->Subject = 'Confirmación de desvinculación en SIIH';
|
||||
|
||||
$mailImportador->Body = "
|
||||
<div style='font-family: Segoe UI, sans-serif; background-color: #f4f6f9; padding: 40px;'>
|
||||
<div style='max-width: 600px; margin: auto; background: #fff; border: 1px solid #ddd; border-radius: 10px; overflow: hidden;'>
|
||||
<div style='background: linear-gradient(to right, #003366, #0055A5); padding: 20px; text-align: center;'>
|
||||
<h2 style='color: white;'>Desvinculación completada</h2>
|
||||
</div>
|
||||
<div style='padding: 30px; color: #333; font-size: 16px;'>
|
||||
<p>Estimado/a <strong>{$relacion['importador_nombre']}</strong>,</p>
|
||||
<p>Has sido desvinculado de la agencia <strong>{$relacion['nombre_agencia']}</strong>.</p>
|
||||
<p><strong>Fecha de desvinculación:</strong> " . date('d/m/Y H:i:s') . "</p>
|
||||
<p>Si esto es un error, por favor contacta al administrador de la agencia.</p>
|
||||
</div>
|
||||
<div style='background: #e9ecef; text-align: center; padding: 15px; font-size: 13px; color: #666;'>
|
||||
© " . date('Y') . " SIIH · Sistema Integral para Importadores de Hidrocarburos
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
";
|
||||
|
||||
$mailImportador->send();
|
||||
} catch (Exception $e) {
|
||||
error_log("Error al enviar correo a importador: " . $mailImportador->ErrorInfo);
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($relacion['admin_email'])) {
|
||||
// Notificación al administrador de la agencia
|
||||
$mailAdmin = new PHPMailer(true);
|
||||
try {
|
||||
$mailAdmin->isSMTP();
|
||||
$mailAdmin->Host = 'secure.emailsrvr.com';
|
||||
$mailAdmin->SMTPAuth = true;
|
||||
$mailAdmin->Username = 'noreply@aduanasoft.com.mx';
|
||||
$mailAdmin->Password = $_ENV['SMTP_PASS'];
|
||||
$mailAdmin->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
|
||||
$mailAdmin->Port = 587;
|
||||
|
||||
$mailAdmin->setFrom('noreply@aduanasoft.com.mx', 'SIIH | Sistema Integral para Importadores de Hidrocarburos');
|
||||
$mailAdmin->addAddress($relacion['admin_email']);
|
||||
$mailAdmin->CharSet = 'UTF-8';
|
||||
$mailAdmin->isHTML(true);
|
||||
$mailAdmin->Subject = 'Notificación de desvinculación en SIIH';
|
||||
|
||||
$mailAdmin->Body = "
|
||||
<div style='font-family: Segoe UI, sans-serif; background-color: #f4f6f9; padding: 40px;'>
|
||||
<div style='max-width: 600px; margin: auto; background: #fff; border: 1px solid #ddd; border-radius: 10px; overflow: hidden;'>
|
||||
<div style='background: linear-gradient(to right, #003366, #0055A5); padding: 20px; text-align: center;'>
|
||||
<h2 style='color: white;'>Notificación de desvinculación</h2>
|
||||
</div>
|
||||
<div style='padding: 30px; color: #333; font-size: 16px;'>
|
||||
<p>Estimado/a <strong>{$relacion['admin_nombre']}</strong>,</p>
|
||||
<p>El importador <strong>{$relacion['importador_nombre']}</strong> se ha desvinculado de su agencia <strong>{$relacion['nombre_agencia']}</strong>.</p>
|
||||
<p><strong>Correo del importador:</strong> {$relacion['importador_email']}</p>
|
||||
<p><strong>Fecha de desvinculación:</strong> " . date('d/m/Y H:i:s') . "</p>
|
||||
</div>
|
||||
<div style='background: #e9ecef; text-align: center; padding: 15px; font-size: 13px; color: #666;'>
|
||||
© " . date('Y') . " SIIH · Sistema Integral para Importadores de Hidrocarburos
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
";
|
||||
|
||||
$mailAdmin->send();
|
||||
} catch (Exception $e) {
|
||||
error_log("Error al enviar correo a administrador: " . $mailAdmin->ErrorInfo);
|
||||
}
|
||||
}
|
||||
|
||||
// Limpiar statements
|
||||
if (isset($stmtVerificar) && is_resource($stmtVerificar)) {
|
||||
sqlsrv_free_stmt($stmtVerificar);
|
||||
@@ -369,7 +577,6 @@ function desvincularUsuario()
|
||||
sqlsrv_free_stmt($stmtActualizarAgencia);
|
||||
}
|
||||
|
||||
|
||||
// Confirmar transacción
|
||||
sqlsrv_commit($conn);
|
||||
sqlsrv_close($conn);
|
||||
|
||||
@@ -131,6 +131,10 @@ function obtenerConfiguracion($conn)
|
||||
// Función auxiliar para enviar email
|
||||
function enviarEmailConfirmacion($destinatario, $datosEmpresa, $esAgencia = false)
|
||||
{
|
||||
if ($datosEmpresa['status'] !== 'pending') {
|
||||
return false;
|
||||
}
|
||||
|
||||
$mail = new PHPMailer(true);
|
||||
|
||||
try {
|
||||
|
||||
@@ -422,9 +422,7 @@ function guardar()
|
||||
$patente_id = $_POST['patente'] ?? null;
|
||||
|
||||
if ($patente_id) {
|
||||
$stmtValidatePatente = sqlsrv_query($conn,
|
||||
"SELECT id_agente FROM dbo.agentes_aduanales WHERE id_agente = ? AND id_agencia = ? AND activo = 1",
|
||||
[$patente_id, $id_agencia]);
|
||||
$stmtValidatePatente = sqlsrv_query($conn, "SELECT id_agente FROM dbo.agentes_aduanales WHERE id_agente = ? AND id_agencia = ? AND activo = 1", [$patente_id, $id_agencia]);
|
||||
|
||||
if (!$stmtValidatePatente || !sqlsrv_fetch_array($stmtValidatePatente, SQLSRV_FETCH_ASSOC)) {
|
||||
die("❌ La patente seleccionada no es válida para su agencia.");
|
||||
@@ -562,9 +560,9 @@ function guardar()
|
||||
if(!empty($_POST['partidas'])&&is_array($_POST['partidas'])){
|
||||
|
||||
$sqlP = "INSERT INTO dbo.solicitud_importacion_partidas
|
||||
(id_solicitud, descripcion, cantidad_comercial, cantidad_tarifa, valor_factura, peso_bruto, unidad_comercial_id, tasa_preferencial)
|
||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?)";
|
||||
|
||||
(id_solicitud, descripcion, cantidad_comercial, cantidad_tarifa, valor_factura, peso_bruto, unidad_comercial_id, tasa_preferencial)
|
||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?)
|
||||
";
|
||||
$partidas_insertadas = 0; // ← contador
|
||||
|
||||
foreach ($_POST['partidas'] as $i => $p) {
|
||||
@@ -637,46 +635,47 @@ function enviarNotificacionNuevaSolicitud($email, $nombreUsuario, $datosSolicitu
|
||||
</div>' : '';
|
||||
|
||||
$mail->Body = "
|
||||
<div style='font-family: Segoe UI, sans-serif; background-color: #f4f6f9; padding: 30px;'>
|
||||
<div style='max-width: 600px; margin: auto; background: #fff; border: 1px solid #ccc; border-radius: 10px;'>
|
||||
<div style='background: linear-gradient(to right, #003366, #0055A5); padding: 20px; text-align: center;'>
|
||||
<h2 style='color: white; margin: 0;'>📥 Nueva Solicitud Registrada</h2>
|
||||
</div>
|
||||
<div style='padding: 20px;'>
|
||||
$tipoNotificacion
|
||||
<p>Hola <strong>" . htmlspecialchars($nombreUsuario) . "</strong>,</p>
|
||||
<p>Tu solicitud de importación ha sido registrada correctamente con los siguientes datos:</p>
|
||||
|
||||
<div style='background: #f8f9fa; padding: 15px; border-radius: 8px; margin: 15px 0;'>
|
||||
<table style='width: 100%; border-collapse: collapse;'>
|
||||
<tr>
|
||||
<td style='padding: 5px 0; font-weight: bold;'>ID Solicitud:</td>
|
||||
<td style='padding: 5px 0;'>$idSolicitud</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style='padding: 5px 0; font-weight: bold;'>Número de Factura:</td>
|
||||
<td style='padding: 5px 0;'>$numeroFactura</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style='padding: 5px 0; font-weight: bold;'>Fecha:</td>
|
||||
<td style='padding: 5px 0;'>$fechaFactura</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style='padding: 5px 0; font-weight: bold;'>Valor:</td>
|
||||
<td style='padding: 5px 0;'>$valorFactura $tipoMoneda</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div style='font-family: Segoe UI, sans-serif; background-color: #f4f6f9; padding: 30px;'>
|
||||
<div style='max-width: 600px; margin: auto; background: #fff; border: 1px solid #ccc; border-radius: 10px;'>
|
||||
<div style='background: linear-gradient(to right, #003366, #0055A5); padding: 20px; text-align: center;'>
|
||||
h2 style='color: white; margin: 0;'>📥 Nueva Solicitud Registrada</h2>
|
||||
</div>
|
||||
<div style='padding: 20px;'>
|
||||
$tipoNotificacion
|
||||
<p>Hola <strong>" . htmlspecialchars($nombreUsuario) . "</strong>,</p>
|
||||
<p>Tu solicitud de importación ha sido registrada correctamente con los siguientes datos:</p>
|
||||
|
||||
<div style='background: #f8f9fa; padding: 15px; border-radius: 8px; margin: 15px 0;'>
|
||||
<table style='width: 100%; border-collapse: collapse;'>
|
||||
<tr>
|
||||
<td style='padding: 5px 0; font-weight: bold;'>ID Solicitud:</td>
|
||||
<td style='padding: 5px 0;'>$idSolicitud</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style='padding: 5px 0; font-weight: bold;'>Número de Factura:</td>
|
||||
<td style='padding: 5px 0;'>$numeroFactura</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style='padding: 5px 0; font-weight: bold;'>Fecha:</td>
|
||||
<td style='padding: 5px 0;'>$fechaFactura</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style='padding: 5px 0; font-weight: bold;'>Valor:</td>
|
||||
<td style='padding: 5px 0;'>$valorFactura $tipoMoneda</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<p>Puedes consultar el estado de tu solicitud accediendo a tu panel de control.</p>
|
||||
<br>
|
||||
<p style='color: #888; font-size: 14px;'>Si no realizaste esta acción, contacta al administrador del sistema.</p>
|
||||
</div>
|
||||
<div style='background: #e9ecef; text-align: center; padding: 10px; font-size: 13px; color: #666;'>
|
||||
© " . date('Y') . " SIIH · Desarrollado por AduanaSoft
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p>Puedes consultar el estado de tu solicitud accediendo a tu panel de control.</p>
|
||||
<br>
|
||||
<p style='color: #888; font-size: 14px;'>Si no realizaste esta acción, contacta al administrador del sistema.</p>
|
||||
</div>
|
||||
<div style='background: #e9ecef; text-align: center; padding: 10px; font-size: 13px; color: #666;'>
|
||||
© " . date('Y') . " SIIH · Desarrollado por AduanaSoft
|
||||
</div>
|
||||
</div>
|
||||
</div>";
|
||||
";
|
||||
|
||||
$envioExitoso = $mail->send();
|
||||
|
||||
@@ -929,8 +928,13 @@ function actualizar()
|
||||
if (!empty($p['id_partida']) && intval($p['id_partida']) > 0) {
|
||||
// ACTUALIZAR partida existente
|
||||
$sql = "UPDATE dbo.solicitud_importacion_partidas SET
|
||||
descripcion = ?, cantidad_comercial = ?, cantidad_tarifa = ?,
|
||||
valor_factura = ?, peso_bruto = ?, unidad_comercial_id = ?, tasa_preferencial = ?
|
||||
descripcion = ?,
|
||||
cantidad_comercial = ?,
|
||||
cantidad_tarifa = ?,
|
||||
valor_factura = ?,
|
||||
peso_bruto = ?,
|
||||
unidad_comercial_id = ?,
|
||||
tasa_preferencial = ?
|
||||
WHERE id_partida = ?
|
||||
AND id_solicitud = ?
|
||||
";
|
||||
@@ -1287,7 +1291,7 @@ function update_status()
|
||||
ON s.id_importador = u.id_usuario
|
||||
WHERE u.id_usuario = ?
|
||||
AND s.id_solicitud = ?
|
||||
";
|
||||
";
|
||||
$stmtNotif = sqlsrv_prepare($conn, $sqlNotif, [$_SESSION['usuario_id'], $id]);
|
||||
|
||||
if ($stmtNotif && sqlsrv_execute($stmtNotif)) {
|
||||
@@ -1858,7 +1862,8 @@ function pdf() {
|
||||
}
|
||||
|
||||
// NUEVA FUNCIÓN: Obtener información del proveedor por clave
|
||||
function obtenerProveedorPorClave($clave) {
|
||||
function obtenerProveedorPorClave($clave)
|
||||
{
|
||||
// Obtener token de la API
|
||||
$token = getApiToken();
|
||||
if (!$token) {
|
||||
@@ -1906,7 +1911,8 @@ function obtenerProveedorPorClave($clave) {
|
||||
return null;
|
||||
}
|
||||
|
||||
function generarHTMLPDF($solicitud, $partidas, $configuracion, $proveedor_info = null) {
|
||||
function generarHTMLPDF($solicitud, $partidas, $configuracion, $proveedor_info = null)
|
||||
{
|
||||
// Formatear fecha
|
||||
$fecha_expedicion = $solicitud['fecha_factura']->format('d/m/Y');
|
||||
$fecha_vencimiento = $solicitud['fecha_factura']->modify('+30 days')->format('d/m/Y');
|
||||
@@ -2047,162 +2053,163 @@ function generarHTMLPDF($solicitud, $partidas, $configuracion, $proveedor_info =
|
||||
}
|
||||
|
||||
$html = '
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Solicitud de Importación</title>
|
||||
<style>
|
||||
body { font-family: Arial, sans-serif; font-size: 9px; margin: 0; padding: 15px; line-height: 1.2; }
|
||||
/** Encabezado **/
|
||||
.header { padding-bottom: 50px; }
|
||||
.logo-section { width: 20%; text-align: left; }
|
||||
.logo { max-width: 125px; height: auto; vertical-align: top; }
|
||||
.company-info { width: 60%; text-align: center; vertical-align: top; font-size: 12px; }
|
||||
.company-name { font-weight: bold; font-size: 25px; margin-bottom: 3px; }
|
||||
.invoice-info { width: 20%; text-align: right; vertical-align: top; font-size: 12px; }
|
||||
/** Sección de Información **/
|
||||
.info-section { border: 1px solid black; border-collapse: collapse; width: 100%; table-layout: fixed; }
|
||||
.clave-section { border: 0.5px solid black; border-collapse: collapse; width: 100%; table-layout: fixed; padding-bottom: 15px; }
|
||||
/** Información del Proveedor **/
|
||||
.proveedor-info { width: 100%; }
|
||||
.provedor-info table { width: 100%; border-collapse: collapse; table-layout: fixed; }
|
||||
.p-field { width: 100px; background-color: #d0d0d0; font-weight: bold; text-align: center; font-size: 12px; }
|
||||
.field { border-bottom: 0.5px solid #000; padding: 5px; font-size: 12px; }
|
||||
/** Fechas **/
|
||||
.dates-info { width: 25%; border: 1px solid #000; }
|
||||
.dates-info table { width: 100%; border-collapse: collapse; table-layout: fixed; }
|
||||
.d-field { background-color: #d0d0d0; font-weight: bold; text-align: center; font-size: 12px; }
|
||||
.date { font-weight: bold; text-align: center; font-size: 12px; padding: 7.5px; }
|
||||
/** Partidas **/
|
||||
.products-table { border-collapse: collapse; border: 0.5px solid #000; }
|
||||
.products-table td { border: 0.5px solid #000; padding: 10px; text-align: center; font-size: 10px; }
|
||||
.products-table th { border: 0.5px solid #000; padding: 5px; background-color: #d0d0d0; font-weight: bold; text-align: center; }
|
||||
.text-center { text-align: center; }
|
||||
.text-right { text-align: right; }
|
||||
.font-bold { font-weight: bold; }
|
||||
/** Total **/
|
||||
.totals-section { float: right; width: 250px; }
|
||||
.total-row { display: flex; justify-content: space-between; margin-top: 25px; font-size: 12px; }
|
||||
/** Nota inferior **/
|
||||
.footer-info { }
|
||||
.footer-note { font-size: 10px; background-color: #d0d0d0; padding: 5px; border: 0.5px solid #000; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- ENCABEZADO -->
|
||||
<table class="header" cellspacing="0" cellpadding="0" width="100%">
|
||||
<tr>
|
||||
<td class="logo-section">
|
||||
<img src="' . htmlspecialchars($configuracion['logo_url'] ?? 'assets/img/logo_siih.png') . '" alt="Logo" class="logo"><br>
|
||||
</td>
|
||||
<td class="company-info">
|
||||
<div class="company-name">' . htmlspecialchars($solicitud['importador_nombre']) . '</div>
|
||||
<div>' . htmlspecialchars($direccion_completa ?: 'Dirección no disponible') . '</div>
|
||||
<div>RFC: ' . htmlspecialchars($solicitud['importador_rfc'] ?? 'No disponible') . '</div>
|
||||
<div>Tel: ' . htmlspecialchars($solicitud['telefono'] ?? 'No disponible') . '</div>
|
||||
<div>Email: ' . htmlspecialchars($solicitud['correo'] ?? 'No disponible') . '</div>
|
||||
</td>
|
||||
<td class="invoice-info">
|
||||
<div><strong>' . htmlspecialchars($configuracion['nombre_plataforma'] ?? 'Sistema Integral para Importadores de Hidrocarburos') . '</strong></div><br>
|
||||
<div class="invoice-title">Solicitud de Importación</div>
|
||||
<div><strong>No. ' . htmlspecialchars($solicitud['id_solicitud']) . '</strong></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Solicitud de Importación</title>
|
||||
<style>
|
||||
body { font-family: Arial, sans-serif; font-size: 9px; margin: 0; padding: 15px; line-height: 1.2; }
|
||||
/** Encabezado **/
|
||||
.header { padding-bottom: 50px; }
|
||||
.logo-section { width: 20%; text-align: left; }
|
||||
.logo { max-width: 125px; height: auto; vertical-align: top; }
|
||||
.company-info { width: 60%; text-align: center; vertical-align: top; font-size: 12px; }
|
||||
.company-name { font-weight: bold; font-size: 25px; margin-bottom: 3px; }
|
||||
.invoice-info { width: 20%; text-align: right; vertical-align: top; font-size: 12px; }
|
||||
/** Sección de Información **/
|
||||
.info-section { border: 1px solid black; border-collapse: collapse; width: 100%; table-layout: fixed; }
|
||||
.clave-section { border: 0.5px solid black; border-collapse: collapse; width: 100%; table-layout: fixed; padding-bottom: 15px; }
|
||||
/** Información del Proveedor **/
|
||||
.proveedor-info { width: 100%; }
|
||||
.provedor-info table { width: 100%; border-collapse: collapse; table-layout: fixed; }
|
||||
.p-field { width: 100px; background-color: #d0d0d0; font-weight: bold; text-align: center; font-size: 12px; }
|
||||
.field { border-bottom: 0.5px solid #000; padding: 5px; font-size: 12px; }
|
||||
/** Fechas **/
|
||||
.dates-info { width: 25%; border: 1px solid #000; }
|
||||
.dates-info table { width: 100%; border-collapse: collapse; table-layout: fixed; }
|
||||
.d-field { background-color: #d0d0d0; font-weight: bold; text-align: center; font-size: 12px; }
|
||||
.date { font-weight: bold; text-align: center; font-size: 12px; padding: 7.5px; }
|
||||
/** Partidas **/
|
||||
.products-table { border-collapse: collapse; border: 0.5px solid #000; }
|
||||
.products-table td { border: 0.5px solid #000; padding: 10px; text-align: center; font-size: 10px; }
|
||||
.products-table th { border: 0.5px solid #000; padding: 5px; background-color: #d0d0d0; font-weight: bold; text-align: center; }
|
||||
.text-center { text-align: center; }
|
||||
.text-right { text-align: right; }
|
||||
.font-bold { font-weight: bold; }
|
||||
/** Total **/
|
||||
.totals-section { float: right; width: 250px; }
|
||||
.total-row { display: flex; justify-content: space-between; margin-top: 25px; font-size: 12px; }
|
||||
/** Nota inferior **/
|
||||
.footer-info { }
|
||||
.footer-note { font-size: 10px; background-color: #d0d0d0; padding: 5px; border: 0.5px solid #000; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- ENCABEZADO -->
|
||||
<table class="header" cellspacing="0" cellpadding="0" width="100%">
|
||||
<tr>
|
||||
<td class="logo-section">
|
||||
<img src="' . htmlspecialchars($configuracion['logo_url'] ?? 'assets/img/logo_siih.png') . '" alt="Logo" class="logo"><br>
|
||||
</td>
|
||||
<td class="company-info">
|
||||
<div class="company-name">' . htmlspecialchars($solicitud['importador_nombre']) . '</div>
|
||||
<div>' . htmlspecialchars($direccion_completa ?: 'Dirección no disponible') . '</div>
|
||||
<div>RFC: ' . htmlspecialchars($solicitud['importador_rfc'] ?? 'No disponible') . '</div>
|
||||
<div>Tel: ' . htmlspecialchars($solicitud['telefono'] ?? 'No disponible') . '</div>
|
||||
<div>Email: ' . htmlspecialchars($solicitud['correo'] ?? 'No disponible') . '</div>
|
||||
</td>
|
||||
<td class="invoice-info">
|
||||
<div><strong>' . htmlspecialchars($configuracion['nombre_plataforma'] ?? 'Sistema Integral para Importadores de Hidrocarburos') . '</strong></div><br>
|
||||
<div class="invoice-title">Solicitud de Importación</div>
|
||||
<div><strong>No. ' . htmlspecialchars($solicitud['id_solicitud']) . '</strong></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- SECCIÓN DE INFORMACIÓN DEL PROVEEDOR Y FECHAS -->
|
||||
<table class="info-section" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<!-- PROVEEDOR -->
|
||||
<td>
|
||||
<table class="proveedor-info" cellspacing="0" cellpadding="0">
|
||||
<!-- SECCIÓN DE INFORMACIÓN DEL PROVEEDOR Y FECHAS -->
|
||||
<table class="info-section" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<!-- PROVEEDOR -->
|
||||
<td>
|
||||
<table class="proveedor-info" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td class="p-field">RAZÓN SOCIAL:</td>
|
||||
<td class="field">' . htmlspecialchars($proveedor_nombre) . '</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class="proveedor-info" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td class="p-field" style="height: 45px;">DIRECCIÓN:</td>
|
||||
<td class="field">' . htmlspecialchars($proveedor_direccion) . '</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class="proveedor-info" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td class="p-field">RFC:</td>
|
||||
<td class="field" style="border-bottom: none;">' . htmlspecialchars($proveedor_rfc) . '</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<!-- FECHAS -->
|
||||
<td class="dates-info">
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
<tr><td class="d-field" style="border-left: 0.5px solid black;">FECHA DE EXPEDICIÓN</td></tr>
|
||||
<tr><td class="date" style="border-bottom: 0.5px solid black;">' . $fecha_expedicion . '</td></tr>
|
||||
<tr><td class="d-field" style="border-left: 0.5px solid black;">FECHA DE VENCIMIENTO</td></tr>
|
||||
<tr><td class="date">' . $fecha_vencimiento . '</td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class="clave-section" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td class="p-field">CLAVE:</td>
|
||||
<td class="field" style="border-bottom: none;">' . htmlspecialchars($solicitud['proveedor_clave'] ?? 'No disponible') . '</td>
|
||||
<td class="p-field">TELÉFONO:</td>
|
||||
<td class="field" style="border-bottom: none;">' . htmlspecialchars($proveedor_telefono) . '</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- TABLA DE PRODUCTOS/PARTIDAS -->
|
||||
<table class="products-table" cellspacing="0" cellpadding="0" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="p-field">RAZÓN SOCIAL:</td>
|
||||
<td class="field">' . htmlspecialchars($proveedor_nombre) . '</td>
|
||||
<th>Producto</th>
|
||||
<th>Unidad de Medida</th>
|
||||
<th>Precio Unitario</th>
|
||||
<th>Cantidad</th>
|
||||
<th>Total</th>
|
||||
</tr>
|
||||
</table>
|
||||
<table class="proveedor-info" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td class="p-field" style="height: 45px;">DIRECCIÓN:</td>
|
||||
<td class="field">' . htmlspecialchars($proveedor_direccion) . '</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class="proveedor-info" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td class="p-field">RFC:</td>
|
||||
<td class="field" style="border-bottom: none;">' . htmlspecialchars($proveedor_rfc) . '</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<!-- FECHAS -->
|
||||
<td class="dates-info">
|
||||
<table cellspacing="0" cellpadding="2">
|
||||
<tr><td class="d-field" style="border-left: 0.5px solid black;">FECHA DE EXPEDICIÓN</td></tr>
|
||||
<tr><td class="date" style="border-bottom: 0.5px solid black;">' . $fecha_expedicion . '</td></tr>
|
||||
<tr><td class="d-field" style="border-left: 0.5px solid black;">FECHA DE VENCIMIENTO</td></tr>
|
||||
<tr><td class="date">' . $fecha_vencimiento . '</td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class="clave-section" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td class="p-field">CLAVE:</td>
|
||||
<td class="field" style="border-bottom: none;">' . htmlspecialchars($solicitud['proveedor_clave'] ?? 'No disponible') . '</td>
|
||||
<td class="p-field">TELÉFONO:</td>
|
||||
<td class="field" style="border-bottom: none;">' . htmlspecialchars($proveedor_telefono) . '</td>
|
||||
</tr>
|
||||
</table>
|
||||
</thead>
|
||||
<tbody>';
|
||||
|
||||
<!-- TABLA DE PRODUCTOS/PARTIDAS -->
|
||||
<table class="products-table" cellspacing="0" cellpadding="0" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Producto</th>
|
||||
<th>Unidad de Medida</th>
|
||||
<th>Precio Unitario</th>
|
||||
<th>Cantidad</th>
|
||||
<th>Total</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>';
|
||||
// Agregar partidas
|
||||
foreach ($partidas as $partida) {
|
||||
$precio_unitario = (float)($partida['precio_unitario'] ?? 0);
|
||||
$cantidad = (float)($partida['cantidad_comercial'] ?? 0);
|
||||
$valor_partida = (float)($partida['valor_factura'] ?? 0);
|
||||
|
||||
$html .= '
|
||||
<tr>
|
||||
<td>' . htmlspecialchars($partida['descripcion']) . '</td>
|
||||
<td>' . htmlspecialchars($partida['unidad_descripcion'] ?? 'Unidad de servicio (E48)') . '</td>
|
||||
<td>' . $moneda_codigo . ' ' . number_format($precio_unitario > 0 ? $precio_unitario : $valor_partida, 2) . '</td>
|
||||
<td>' . number_format($cantidad > 0 ? $cantidad : 1, 0) . '</td>
|
||||
<td>' . $moneda_codigo . ' ' . number_format($valor_partida, 2) . '</td>
|
||||
</tr>';
|
||||
}
|
||||
|
||||
// Agregar partidas
|
||||
foreach ($partidas as $partida) {
|
||||
$precio_unitario = (float)($partida['precio_unitario'] ?? 0);
|
||||
$cantidad = (float)($partida['cantidad_comercial'] ?? 0);
|
||||
$valor_partida = (float)($partida['valor_factura'] ?? 0);
|
||||
|
||||
$html .= '
|
||||
<tr>
|
||||
<td>' . htmlspecialchars($partida['descripcion']) . '</td>
|
||||
<td>' . htmlspecialchars($partida['unidad_descripcion'] ?? 'Unidad de servicio (E48)') . '</td>
|
||||
<td>' . $moneda_codigo . ' ' . number_format($precio_unitario > 0 ? $precio_unitario : $valor_partida, 2) . '</td>
|
||||
<td>' . number_format($cantidad > 0 ? $cantidad : 1, 0) . '</td>
|
||||
<td>' . $moneda_codigo . ' ' . number_format($valor_partida, 2) . '</td>
|
||||
</tr>';
|
||||
}
|
||||
$html .= '
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
$html .= '
|
||||
</tbody>
|
||||
</table>
|
||||
<!-- NOTA INFERIOR -->
|
||||
<div class="footer-info">
|
||||
<div class="footer-note">' . $total_texto . '</div>
|
||||
</div>
|
||||
|
||||
<!-- NOTA INFERIOR -->
|
||||
<div class="footer-info">
|
||||
<div class="footer-note">' . $total_texto . '</div>
|
||||
</div>
|
||||
<!-- TOTALES -->
|
||||
<div class="totals-section">
|
||||
<div class="total-row text-right">
|
||||
<span><strong>Total:</strong></span>
|
||||
<span><strong>' . $moneda_codigo . ' ' . number_format($total, 2) . '</strong></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- TOTALES -->
|
||||
<div class="totals-section">
|
||||
<div class="total-row text-right">
|
||||
<span><strong>Total:</strong></span>
|
||||
<span><strong>' . $moneda_codigo . ' ' . number_format($total, 2) . '</strong></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>';
|
||||
</body>
|
||||
</html>
|
||||
';
|
||||
|
||||
return $html;
|
||||
}
|
||||
Reference in New Issue
Block a user