Compare commits
14 Commits
T2025-10-1
...
T2025-09-0
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c40275381 | |||
| 07facb8ae2 | |||
| 0d60156b7f | |||
|
|
5a0e9a8259 | ||
| a36178df1b | |||
| 4b66b4944a | |||
| dfddb418d0 | |||
|
|
d46ea97340 | ||
| 29e0f1a68d | |||
| 5580c3cc91 | |||
| bb59d1e487 | |||
| 06ec641691 | |||
| a91ef2f11a | |||
| 97a39a6d37 |
BIN
public/images/empresaria001.webp
Normal file
BIN
public/images/empresaria001.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 13 MiB |
BIN
public/images/sistemagestion002.webp
Normal file
BIN
public/images/sistemagestion002.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 17 MiB |
@@ -594,6 +594,7 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
||||
|
||||
const fileCount = uploadType === 'folders' ? filesToUpload.length : selectedFiles.length;
|
||||
showMessage(`Subiendo ${fileCount} archivo(s)...`, 'info');
|
||||
let alertMessage = '';
|
||||
|
||||
const uploadEndpoint = `${API_URL}/customs/pedimentos/bulk-create/`;
|
||||
const result = await postFormDataWithAuth(uploadEndpoint, formData);
|
||||
@@ -610,10 +611,38 @@ const downloadExpediente = async (pedimentoId, pedimentoName, setSuccess, showMe
|
||||
}
|
||||
showMessage(errorMsg, 'error');
|
||||
}else{
|
||||
showMessage(
|
||||
`${result.uploaded_count || fileCount} archivo(s) subido(s) exitosamente`,
|
||||
'success'
|
||||
);
|
||||
const data = await result.json();
|
||||
console.log(data);
|
||||
if(data.already_existing_count > 0){
|
||||
// Crear una cadena con todos los pedimentos
|
||||
const existingList = data.already_existing
|
||||
.map(pedimento => `${pedimento.pedimento_app}`)
|
||||
.join('\n');
|
||||
showMessage(
|
||||
`${data.message}\n\nPedimentos ya existentes:\n${existingList}`,
|
||||
'warning'
|
||||
);
|
||||
}
|
||||
else if(data.failed_files && data.failed_files.length > 0) {
|
||||
// Sección de archivos fallidos
|
||||
alertMessage += `ARCHIVOS CON ERRORES (${data.failed_files.length}):\n`;
|
||||
data.failed_files.forEach((file, index) => {
|
||||
alertMessage += `\n${index + 1}. ${file.archivo_original}`;
|
||||
alertMessage += `\n Error: ${file.error}`;
|
||||
});
|
||||
|
||||
showMessage(
|
||||
`${alertMessage}`,
|
||||
'warning'
|
||||
);
|
||||
}
|
||||
else{
|
||||
showMessage(
|
||||
`${result.uploaded_count || fileCount} archivo(s) subido(s) exitosamente`,
|
||||
'success'
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// showMessage(
|
||||
|
||||
@@ -13,6 +13,7 @@ export default function LandingAnimated() {
|
||||
message: ''
|
||||
});
|
||||
|
||||
const currentYear = new Date().getFullYear();
|
||||
const observerRef = useRef(null);
|
||||
const sectionsRef = useRef({});
|
||||
|
||||
@@ -101,7 +102,7 @@ export default function LandingAnimated() {
|
||||
|
||||
// Estadísticas animadas
|
||||
const stats = [
|
||||
{ number: '500+', label: 'Agentes Aduanales', icon: '🏢' },
|
||||
{ number: '350+', label: 'Clientes', icon: '🏢' },
|
||||
{ number: '15,000+', label: 'Pedimentos Procesados', icon: '📋' },
|
||||
{ number: '99.9%', label: 'Uptime Garantizado', icon: '⚡' },
|
||||
{ number: '24/7', label: 'Soporte Especializado', icon: '🛡️' }
|
||||
@@ -115,24 +116,31 @@ export default function LandingAnimated() {
|
||||
? 'bg-white/95 backdrop-blur-md shadow-lg border-b border-gray-200'
|
||||
: 'bg-transparent'
|
||||
}`}>
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="flex justify-between items-center py-4">
|
||||
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||
<div className="flex items-center justify-between py-4">
|
||||
<div className="flex items-center">
|
||||
<div className="flex-shrink-0">
|
||||
<h1 className="text-2xl font-bold">
|
||||
<span
|
||||
className="bg-clip-text text-transparent"
|
||||
className="text-transparent bg-clip-text"
|
||||
style={{
|
||||
background: `linear-gradient(to right, #1B2A41, #4DA6FF)`,
|
||||
WebkitBackgroundClip: 'text',
|
||||
WebkitTextFillColor: 'transparent'
|
||||
color: isScrolled
|
||||
? 'transparent'
|
||||
: '#FFFFFF',
|
||||
background: isScrolled
|
||||
? 'linear-gradient(to right, #1B2A41, #4DA6FF)'
|
||||
: 'none',
|
||||
WebkitBackgroundClip: isScrolled ? 'text' : 'unset',
|
||||
WebkitTextFillColor: isScrolled ? 'transparent' : '#FFFFFF',
|
||||
backgroundClip: isScrolled ? 'text' : 'unset'
|
||||
}}
|
||||
|
||||
>
|
||||
EFC
|
||||
</span>
|
||||
</h1>
|
||||
</div>
|
||||
<nav className="hidden md:flex ml-10 space-x-8">
|
||||
<nav className="hidden ml-10 space-x-8 md:flex">
|
||||
{[
|
||||
{ id: 'inicio', label: 'Inicio' },
|
||||
{ id: 'estadisticas', label: 'Confianza' },
|
||||
@@ -141,36 +149,52 @@ export default function LandingAnimated() {
|
||||
{ id: 'precios', label: 'Precios' },
|
||||
{ id: 'contacto', label: 'Contacto' }
|
||||
].map((item) => (
|
||||
<button
|
||||
key={item.id}
|
||||
onClick={() => scrollToSection(item.id)}
|
||||
className={`relative text-sm font-medium transition-all duration-300 hover:scale-105 group`}
|
||||
style={{
|
||||
color: activeSection === item.id
|
||||
? '#1B2A41'
|
||||
: isScrolled
|
||||
? '#333333'
|
||||
: 'white'
|
||||
}}
|
||||
onMouseEnter={(e) => {
|
||||
if (activeSection !== item.id) {
|
||||
e.target.style.color = isScrolled ? '#1B2A41' : '#4DA6FF';
|
||||
}
|
||||
}}
|
||||
onMouseLeave={(e) => {
|
||||
if (activeSection !== item.id) {
|
||||
e.target.style.color = isScrolled ? '#333333' : 'white';
|
||||
}
|
||||
}}
|
||||
>
|
||||
{item.label}
|
||||
<span
|
||||
className={`absolute -bottom-1 left-0 h-0.5 transition-all duration-300 ${
|
||||
activeSection === item.id ? 'w-full' : 'w-0 group-hover:w-full'
|
||||
}`}
|
||||
style={{ backgroundColor: '#1B2A41' }}
|
||||
></span>
|
||||
</button>
|
||||
<button
|
||||
key={item.id}
|
||||
onClick={() => scrollToSection(item.id)}
|
||||
className={`relative text-sm font-medium transition-all duration-300 hover:scale-105 group`}
|
||||
style={{
|
||||
color: item.id === 'inicio'
|
||||
? (isScrolled
|
||||
? (activeSection === 'inicio' ? '#1B2A41' : '#333333')
|
||||
: (activeSection === 'inicio' ? 'white' : 'white'))
|
||||
: (activeSection === item.id
|
||||
? '#1B2A41'
|
||||
: isScrolled
|
||||
? '#333333'
|
||||
: 'white')
|
||||
}}
|
||||
onMouseEnter={(e) => {
|
||||
if (activeSection !== item.id) {
|
||||
if (item.id === 'inicio') {
|
||||
e.target.style.color = isScrolled ? '#1B2A41' : '#4DA6FF';
|
||||
} else {
|
||||
e.target.style.color = isScrolled ? '#1B2A41' : '#4DA6FF';
|
||||
}
|
||||
}
|
||||
}}
|
||||
onMouseLeave={(e) => {
|
||||
if (activeSection !== item.id) {
|
||||
if (item.id === 'inicio') {
|
||||
e.target.style.color = isScrolled ? '#333333' : 'white';
|
||||
} else {
|
||||
e.target.style.color = isScrolled ? '#333333' : 'white';
|
||||
}
|
||||
}
|
||||
}}
|
||||
>
|
||||
{item.label}
|
||||
<span
|
||||
className={`absolute -bottom-1 left-0 h-0.5 transition-all duration-300 ${
|
||||
activeSection === item.id ? 'w-full' : 'w-0 group-hover:w-full'
|
||||
}`}
|
||||
style={{
|
||||
backgroundColor: item.id === 'inicio' && !isScrolled && activeSection === 'inicio'
|
||||
? 'white'
|
||||
: '#1B2A41'
|
||||
}}
|
||||
></span>
|
||||
</button>
|
||||
))}
|
||||
</nav>
|
||||
</div>
|
||||
@@ -196,21 +220,33 @@ export default function LandingAnimated() {
|
||||
</header>
|
||||
|
||||
{/* Hero Section con efectos de gradiente animado */}
|
||||
<section id="inicio" className="relative min-h-screen flex items-center overflow-hidden">
|
||||
{/* Background con gradientes animados */}
|
||||
<div
|
||||
className="absolute inset-0"
|
||||
style={{
|
||||
background: 'linear-gradient(135deg, #1B2A41 0%, #263549 50%, #1976D2 100%)'
|
||||
}}
|
||||
>
|
||||
<div className="absolute inset-0 bg-gradient-to-t from-black/20 to-transparent"></div>
|
||||
<section id="inicio" className="relative flex items-center min-h-screen overflow-hidden">
|
||||
{/* Background con imagen */}
|
||||
<div className="absolute inset-0">
|
||||
{/* Imagen de fondo */}
|
||||
<div
|
||||
className="absolute inset-0 bg-center bg-no-repeat bg-cover"
|
||||
style={{
|
||||
backgroundImage: 'url("images/empresaria001.webp")', // Cambia esta ruta
|
||||
backgroundColor: '#1B2A41', // Color de respaldo
|
||||
}}
|
||||
>
|
||||
{/* Overlay para oscurecer la imagen y mejorar legibilidad */}
|
||||
<div
|
||||
className="absolute inset-0"
|
||||
style={{
|
||||
background: 'linear-gradient(to bottom, rgba(27, 42, 65, 0.85), rgba(27, 42, 65, 0.7))',
|
||||
}}
|
||||
></div>
|
||||
</div>
|
||||
|
||||
{/* Efectos adicionales */}
|
||||
<div className="absolute inset-0 opacity-20">
|
||||
<div className="absolute inset-0 bg-gradient-to-r from-transparent via-white/5 to-transparent animate-pulse"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-32 text-center">
|
||||
<div className="relative px-4 py-32 mx-auto text-center max-w-7xl sm:px-6 lg:px-8">
|
||||
<div className="space-y-8">
|
||||
<h1
|
||||
data-animate="hero-title"
|
||||
@@ -222,7 +258,7 @@ export default function LandingAnimated() {
|
||||
>
|
||||
<span className="block">
|
||||
<span
|
||||
className="bg-clip-text text-transparent"
|
||||
className="text-transparent bg-clip-text"
|
||||
style={{
|
||||
background: 'linear-gradient(to right, white, #64B5F6)',
|
||||
WebkitBackgroundClip: 'text',
|
||||
@@ -233,7 +269,7 @@ export default function LandingAnimated() {
|
||||
</span>
|
||||
</span>
|
||||
<span
|
||||
className="block text-3xl sm:text-4xl md:text-5xl mt-4 bg-clip-text text-transparent"
|
||||
className="block mt-4 text-3xl text-transparent sm:text-4xl md:text-5xl bg-clip-text"
|
||||
style={{
|
||||
background: 'linear-gradient(to right, #64B5F6, white)',
|
||||
WebkitBackgroundClip: 'text',
|
||||
@@ -243,7 +279,7 @@ export default function LandingAnimated() {
|
||||
Para Agentes Aduanales
|
||||
</span>
|
||||
<span
|
||||
className="block text-3xl sm:text-4xl md:text-5xl bg-clip-text text-transparent"
|
||||
className="block text-3xl text-transparent sm:text-4xl md:text-5xl bg-clip-text"
|
||||
style={{
|
||||
background: 'linear-gradient(to right, white, #64B5F6)',
|
||||
WebkitBackgroundClip: 'text',
|
||||
@@ -264,8 +300,8 @@ export default function LandingAnimated() {
|
||||
style={{ color: '#64B5F6' }}
|
||||
>
|
||||
La plataforma líder desarrollada por
|
||||
<span className="font-bold text-white"> @AduanaSoft</span> para
|
||||
<span className="font-semibold" style={{ color: '#FF9800' }}> digitalizar y optimizar</span>
|
||||
<span className="font-bold text-white"> Aduanasoft®</span> para
|
||||
<span className="font-semibold" style={{ color: '#FFFFFF' }}> digitalizar y optimizar</span>
|
||||
{' '}todos tus procesos de comercio exterior con tecnología de vanguardia
|
||||
</p>
|
||||
|
||||
@@ -279,7 +315,7 @@ export default function LandingAnimated() {
|
||||
>
|
||||
<Link
|
||||
to="/login"
|
||||
className="group inline-flex items-center px-8 py-4 text-lg font-semibold rounded-full transition-all duration-300 shadow-2xl hover:shadow-3xl transform hover:-translate-y-1 hover:scale-105"
|
||||
className="inline-flex items-center px-8 py-4 text-lg font-semibold transition-all duration-300 transform rounded-full shadow-2xl group hover:shadow-3xl hover:-translate-y-1 hover:scale-105"
|
||||
style={{
|
||||
color: '#1B2A41',
|
||||
background: 'linear-gradient(to right, white, #F2F4F7)'
|
||||
@@ -292,15 +328,15 @@ export default function LandingAnimated() {
|
||||
}}
|
||||
>
|
||||
<span>Comenzar Ahora</span>
|
||||
<svg className="ml-2 w-5 h-5 group-hover:translate-x-1 transition-transform duration-200" fill="currentColor" viewBox="0 0 20 20">
|
||||
<svg className="w-5 h-5 ml-2 transition-transform duration-200 group-hover:translate-x-1" fill="currentColor" viewBox="0 0 20 20">
|
||||
<path fillRule="evenodd" d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clipRule="evenodd" />
|
||||
</svg>
|
||||
</Link>
|
||||
<button
|
||||
onClick={() => scrollToSection('caracteristicas')}
|
||||
className="group inline-flex items-center px-8 py-4 text-lg font-semibold rounded-full text-white bg-transparent border-2 border-white/30 hover:border-white hover:bg-white/10 transition-all duration-300 backdrop-blur-sm"
|
||||
className="inline-flex items-center px-8 py-4 text-lg font-semibold text-white transition-all duration-300 bg-transparent border-2 rounded-full group border-white/30 hover:border-white hover:bg-white/10 backdrop-blur-sm"
|
||||
>
|
||||
<svg className="mr-2 w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<svg className="w-5 h-5 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M14.828 14.828a4 4 0 01-5.656 0M9 10h1m4 0h1m-6 4h.01M19 10a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
<span>Ver Demo</span>
|
||||
@@ -308,11 +344,11 @@ export default function LandingAnimated() {
|
||||
</div>
|
||||
|
||||
{/* Floating cards con efectos */}
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 max-w-4xl mx-auto">
|
||||
<div className="grid max-w-4xl grid-cols-1 gap-6 mx-auto md:grid-cols-3">
|
||||
{[
|
||||
{ icon: '🚀', title: 'Rápido', desc: 'Procesamiento instantáneo' },
|
||||
{ icon: '🔒', title: 'Seguro', desc: 'Cifrado de nivel bancario' },
|
||||
{ icon: '📊', title: 'Inteligente', desc: 'IA para optimización' }
|
||||
{ icon: '📊', title: 'Inteligente', desc: 'IA para optimización' },
|
||||
].map((feature, index) => (
|
||||
<div
|
||||
key={index}
|
||||
@@ -324,8 +360,8 @@ export default function LandingAnimated() {
|
||||
}`}
|
||||
style={{ transitionDelay: `${700 + index * 200}ms` }}
|
||||
>
|
||||
<div className="text-4xl mb-3">{feature.icon}</div>
|
||||
<h3 className="text-white font-semibold text-lg mb-2">{feature.title}</h3>
|
||||
<div className="mb-3 text-4xl">{feature.icon}</div>
|
||||
<h3 className="mb-2 text-lg font-semibold text-white">{feature.title}</h3>
|
||||
<p className="text-sm" style={{ color: '#64B5F6' }}>{feature.desc}</p>
|
||||
</div>
|
||||
))}
|
||||
@@ -334,10 +370,10 @@ export default function LandingAnimated() {
|
||||
</div>
|
||||
|
||||
{/* Scroll indicator animado */}
|
||||
<div className="absolute bottom-8 left-1/2 transform -translate-x-1/2 animate-bounce">
|
||||
<div className="absolute transform -translate-x-1/2 bottom-8 left-1/2 animate-bounce">
|
||||
<button
|
||||
onClick={() => scrollToSection('estadisticas')}
|
||||
className="text-white/70 hover:text-white transition-colors duration-200"
|
||||
className="transition-colors duration-200 text-white/70 hover:text-white"
|
||||
>
|
||||
<svg className="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 14l-7 7m0 0l-7-7m7 7V3" />
|
||||
@@ -348,7 +384,7 @@ export default function LandingAnimated() {
|
||||
|
||||
{/* Sección de Estadísticas y Confianza */}
|
||||
<section id="estadisticas" className="py-20" style={{ background: 'linear-gradient(to right, #F2F4F7, white)' }}>
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||
<div
|
||||
data-animate="stats-header"
|
||||
className={`text-center mb-16 transition-all duration-1000 ${
|
||||
@@ -357,17 +393,17 @@ export default function LandingAnimated() {
|
||||
: 'opacity-0 translate-y-10'
|
||||
}`}
|
||||
>
|
||||
<h2 className="text-4xl font-extrabold mb-4" style={{ color: '#333333' }}>
|
||||
Más de <span style={{ color: '#1B2A41' }}>500 empresas</span> confían en nosotros
|
||||
<h2 className="mb-4 text-4xl font-extrabold" style={{ color: '#333333' }}>
|
||||
Más de <span style={{ color: '#1B2A41' }}>350 empresas</span> confían en nosotros
|
||||
</h2>
|
||||
<p className="text-xl max-w-3xl mx-auto" style={{ color: '#7A7A7A' }}>
|
||||
Desarrollado por <span className="font-bold" style={{ color: '#1B2A41' }}>@AduanaSoft</span>,
|
||||
líderes en tecnología aduanal con más de 10 años de experiencia
|
||||
<p className="max-w-3xl mx-auto text-xl" style={{ color: '#7A7A7A' }}>
|
||||
Desarrollado por <span className="font-bold" style={{ color: '#1B2A41' }}>Aduanasoft®</span>,
|
||||
líderes en tecnología aduanal con más de 29 años de experiencia
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{/* Stats con animaciones */}
|
||||
<div className="grid grid-cols-2 lg:grid-cols-4 gap-8 mb-16">
|
||||
<div className="grid grid-cols-2 gap-8 mb-16 lg:grid-cols-4">
|
||||
{stats.map((stat, index) => (
|
||||
<div
|
||||
key={index}
|
||||
@@ -379,8 +415,8 @@ export default function LandingAnimated() {
|
||||
}`}
|
||||
style={{ transitionDelay: `${index * 200}ms` }}
|
||||
>
|
||||
<div className="text-4xl mb-4 animate-pulse">{stat.icon}</div>
|
||||
<div className="text-3xl font-bold mb-2" style={{ color: '#1B2A41' }}>{stat.number}</div>
|
||||
<div className="mb-4 text-4xl animate-pulse">{stat.icon}</div>
|
||||
<div className="mb-2 text-3xl font-bold" style={{ color: '#1B2A41' }}>{stat.number}</div>
|
||||
<div className="font-medium" style={{ color: '#7A7A7A' }}>{stat.label}</div>
|
||||
</div>
|
||||
))}
|
||||
@@ -396,18 +432,18 @@ export default function LandingAnimated() {
|
||||
}`}
|
||||
style={{ background: 'linear-gradient(to right, #1B2A41, #263549)' }}
|
||||
>
|
||||
<div className="grid md:grid-cols-2 gap-8 items-center">
|
||||
<div className="grid items-center gap-8 md:grid-cols-2">
|
||||
<div>
|
||||
<h3 className="text-3xl font-bold mb-6">Acerca de AduanaSoft</h3>
|
||||
<h3 className="mb-6 text-3xl font-bold">Acerca de Aduanasoft</h3>
|
||||
<div className="space-y-4 text-indigo-100">
|
||||
{[
|
||||
"10+ años especializados en software aduanal",
|
||||
"29+ años especializados en software aduanal",
|
||||
"Equipo experto en comercio exterior y tecnología",
|
||||
"Certificación SAT y cumplimiento normativo total",
|
||||
"Soporte 24/7 con especialistas aduanales"
|
||||
].map((item, idx) => (
|
||||
<div key={idx} className="flex items-start space-x-3">
|
||||
<div className="flex-shrink-0 w-6 h-6 bg-white/20 rounded-full flex items-center justify-center mt-1">
|
||||
<div className="flex items-center justify-center flex-shrink-0 w-6 h-6 mt-1 rounded-full bg-white/20">
|
||||
<svg className="w-3 h-3" fill="currentColor" viewBox="0 0 20 20">
|
||||
<path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
|
||||
</svg>
|
||||
@@ -418,9 +454,9 @@ export default function LandingAnimated() {
|
||||
</div>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<div className="bg-white/10 backdrop-blur-md rounded-2xl p-8 border border-white/20">
|
||||
<div className="text-6xl mb-4">🏆</div>
|
||||
<h4 className="text-2xl font-bold mb-2">Líder del Mercado</h4>
|
||||
<div className="p-8 border bg-white/10 backdrop-blur-md rounded-2xl border-white/20">
|
||||
<div className="mb-4 text-6xl">🏆</div>
|
||||
<h4 className="mb-2 text-2xl font-bold">Líder del Mercado</h4>
|
||||
<p className="text-indigo-100">
|
||||
Reconocidos como la mejor solución tecnológica para agentes aduanales en México
|
||||
</p>
|
||||
@@ -433,7 +469,7 @@ export default function LandingAnimated() {
|
||||
|
||||
{/* Características con efectos interactivos */}
|
||||
<section id="caracteristicas" className="py-20 bg-white">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||
<div
|
||||
data-animate="features-header"
|
||||
className={`text-center mb-16 transition-all duration-1000 ${
|
||||
@@ -442,7 +478,7 @@ export default function LandingAnimated() {
|
||||
: 'opacity-0 translate-y-10'
|
||||
}`}
|
||||
>
|
||||
<h2 className="text-4xl font-extrabold text-gray-900 mb-4">
|
||||
<h2 className="mb-4 text-4xl font-extrabold text-gray-900">
|
||||
Soluciones Especializadas para Comercio Exterior
|
||||
</h2>
|
||||
<p className="text-xl text-gray-600">
|
||||
@@ -450,7 +486,7 @@ export default function LandingAnimated() {
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 lg:grid-cols-3 gap-8">
|
||||
<div className="grid grid-cols-1 gap-8 lg:grid-cols-3">
|
||||
{[
|
||||
{
|
||||
icon: '📋',
|
||||
@@ -492,7 +528,7 @@ export default function LandingAnimated() {
|
||||
}`}>
|
||||
{feature.icon}
|
||||
</div>
|
||||
<h3 className="text-2xl font-bold mb-4 transition-colors duration-300" style={{
|
||||
<h3 className="mb-4 text-2xl font-bold transition-colors duration-300" style={{
|
||||
color: visibleElements.has(`feature-${index}`) ? '#1B2A41' : '#333333'
|
||||
}}>
|
||||
{feature.title}
|
||||
@@ -503,7 +539,7 @@ export default function LandingAnimated() {
|
||||
<ul className="space-y-2">
|
||||
{feature.features.map((item, idx) => (
|
||||
<li key={idx} className="flex items-center text-sm" style={{ color: '#7A7A7A' }}>
|
||||
<svg className="w-4 h-4 mr-2 flex-shrink-0" style={{ color: '#2E7D32' }} fill="currentColor" viewBox="0 0 20 20">
|
||||
<svg className="flex-shrink-0 w-4 h-4 mr-2" style={{ color: '#2E7D32' }} fill="currentColor" viewBox="0 0 20 20">
|
||||
<path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
|
||||
</svg>
|
||||
{item}
|
||||
@@ -514,7 +550,7 @@ export default function LandingAnimated() {
|
||||
<div className="p-4 transition-colors duration-300" style={{
|
||||
background: 'linear-gradient(to right, #F2F4F7, #FFFFFF)'
|
||||
}}>
|
||||
<button className="font-semibold text-sm transition-colors duration-200" style={{
|
||||
<button className="text-sm font-semibold transition-colors duration-200" style={{
|
||||
color: '#1B2A41'
|
||||
}}>
|
||||
Conocer más →
|
||||
@@ -528,7 +564,7 @@ export default function LandingAnimated() {
|
||||
|
||||
{/* Precios */}
|
||||
<section id="precios" className="py-20 bg-white">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||
<div
|
||||
data-animate="pricing-header"
|
||||
className={`text-center mb-16 transition-all duration-1000 ${
|
||||
@@ -537,7 +573,7 @@ export default function LandingAnimated() {
|
||||
: 'opacity-0 translate-y-10'
|
||||
}`}
|
||||
>
|
||||
<h2 className="text-4xl font-extrabold text-gray-900 mb-4">
|
||||
<h2 className="mb-4 text-4xl font-extrabold text-gray-900">
|
||||
Planes diseñados para tu crecimiento
|
||||
</h2>
|
||||
<p className="text-xl text-gray-600">
|
||||
@@ -545,7 +581,7 @@ export default function LandingAnimated() {
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
<div className="grid grid-cols-1 gap-8 md:grid-cols-3">
|
||||
{[
|
||||
{
|
||||
name: 'Starter',
|
||||
@@ -614,8 +650,8 @@ export default function LandingAnimated() {
|
||||
}}
|
||||
>
|
||||
{plan.popular && (
|
||||
<div className="absolute -top-4 left-1/2 transform -translate-x-1/2">
|
||||
<span className="text-white px-4 py-2 rounded-full text-sm font-semibold animate-pulse" style={{
|
||||
<div className="absolute transform -translate-x-1/2 -top-4 left-1/2">
|
||||
<span className="px-4 py-2 text-sm font-semibold text-white rounded-full animate-pulse" style={{
|
||||
background: 'linear-gradient(to right, #1B2A41, #263549)'
|
||||
}}>
|
||||
Más Popular
|
||||
@@ -623,8 +659,8 @@ export default function LandingAnimated() {
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className="text-center mb-8">
|
||||
<h3 className="text-2xl font-bold mb-2" style={{ color: '#333333' }}>{plan.name}</h3>
|
||||
<div className="mb-8 text-center">
|
||||
<h3 className="mb-2 text-2xl font-bold" style={{ color: '#333333' }}>{plan.name}</h3>
|
||||
<p className="mb-4" style={{ color: '#7A7A7A' }}>{plan.description}</p>
|
||||
{/*
|
||||
<div className="mb-4">
|
||||
@@ -634,10 +670,10 @@ export default function LandingAnimated() {
|
||||
*/}
|
||||
</div>
|
||||
|
||||
<ul className="space-y-3 mb-8">
|
||||
<ul className="mb-8 space-y-3">
|
||||
{plan.features.map((feature, idx) => (
|
||||
<li key={idx} className="flex items-center">
|
||||
<svg className="w-5 h-5 text-green-500 mr-3" fill="currentColor" viewBox="0 0 20 20">
|
||||
<svg className="w-5 h-5 mr-3 text-green-500" fill="currentColor" viewBox="0 0 20 20">
|
||||
<path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
|
||||
</svg>
|
||||
<span className="text-gray-700">{feature}</span>
|
||||
@@ -662,32 +698,50 @@ export default function LandingAnimated() {
|
||||
</section>
|
||||
|
||||
{/* Contacto */}
|
||||
<section id="contacto" className="relative py-20 overflow-hidden" style={{
|
||||
background: 'linear-gradient(135deg, #1B2A41 0%, #263549 50%, #1B2A41 100%)'
|
||||
}}>
|
||||
{/* Background Pattern */}
|
||||
<div className="absolute inset-0 opacity-10">
|
||||
<div className="absolute inset-0" style={{
|
||||
backgroundImage: `url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%234DA6FF' fillOpacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")`
|
||||
}}></div>
|
||||
</div>
|
||||
|
||||
{/* Floating elements */}
|
||||
<div className="absolute top-10 left-10 w-20 h-20 rounded-full opacity-20" style={{ backgroundColor: '#4DA6FF' }}></div>
|
||||
<div className="absolute bottom-10 right-10 w-32 h-32 rounded-full opacity-15" style={{ backgroundColor: '#F57C00' }}></div>
|
||||
<div className="absolute top-1/2 left-1/4 w-16 h-16 rounded-full opacity-10" style={{ backgroundColor: '#2E7D32' }}></div>
|
||||
|
||||
<div className="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="text-center mb-16">
|
||||
<h2 className="text-4xl md:text-5xl font-extrabold text-white mb-6">
|
||||
¿Listo para <span style={{ color: '#4DA6FF' }}>transformar</span> tu operación aduanal?
|
||||
</h2>
|
||||
<p className="text-xl md:text-2xl max-w-3xl mx-auto" style={{ color: '#64B5F6' }}>
|
||||
Únete a más de 500 empresas que ya optimizaron sus procesos con EFC
|
||||
</p>
|
||||
</div>
|
||||
<section id="contacto" className="relative py-20 overflow-hidden">
|
||||
{/* Background con imagen */}
|
||||
<div className="absolute inset-0">
|
||||
{/* Misma imagen de fondo que la sección inicio */}
|
||||
<div
|
||||
className="absolute inset-0 bg-center bg-no-repeat bg-cover"
|
||||
style={{
|
||||
backgroundImage: 'url("images/sistemagestion002.webp")',
|
||||
backgroundColor: '#1B2A41',
|
||||
}}
|
||||
>
|
||||
{/* Overlay más oscuro para mejor legibilidad en formulario */}
|
||||
<div
|
||||
className="absolute inset-0"
|
||||
style={{
|
||||
background: 'linear-gradient(to bottom, rgba(27, 42, 65, 0.85), rgba(27, 42, 65, 0.7))',
|
||||
}}
|
||||
></div>
|
||||
</div>
|
||||
|
||||
{/* Background Pattern */}
|
||||
<div className="absolute inset-0 opacity-10">
|
||||
<div className="absolute inset-0" style={{
|
||||
backgroundImage: `url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%234DA6FF' fillOpacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")`
|
||||
}}></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Floating elements */}
|
||||
{/* <div className="absolute w-20 h-20 rounded-full top-10 left-10 opacity-20" style={{ backgroundColor: '#4DA6FF' }}></div>
|
||||
<div className="absolute w-32 h-32 rounded-full bottom-10 right-10 opacity-15" style={{ backgroundColor: '#F57C00' }}></div>
|
||||
<div className="absolute w-16 h-16 rounded-full top-1/2 left-1/4 opacity-10" style={{ backgroundColor: '#2E7D32' }}></div> */}
|
||||
|
||||
<div className="relative px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||
<div className="mb-16 text-center">
|
||||
<h2 className="mb-6 text-4xl font-extrabold text-white md:text-5xl">
|
||||
¿Listo para <span style={{ color: '#4DA6FF' }}>transformar</span> tu operación aduanal?
|
||||
</h2>
|
||||
<p className="max-w-3xl mx-auto text-xl md:text-2xl" style={{ color: '#64B5F6' }}>
|
||||
Únete a más de 350 empresas que ya optimizaron sus procesos con EFC
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 lg:grid-cols-2 gap-12 items-start">
|
||||
<div className="grid items-start grid-cols-1 gap-12 lg:grid-cols-2">
|
||||
<div
|
||||
data-animate="contact-info"
|
||||
className={`transition-all duration-1000 ${
|
||||
@@ -697,9 +751,9 @@ export default function LandingAnimated() {
|
||||
}`}
|
||||
>
|
||||
{/* Card de información de contacto */}
|
||||
<div className="bg-white/10 backdrop-blur-md rounded-3xl p-8 border border-white/20">
|
||||
<div className="p-8 border bg-white/10 backdrop-blur-md rounded-3xl border-white/20">
|
||||
<div className="mb-8">
|
||||
<h3 className="text-2xl font-bold text-white mb-4">
|
||||
<h3 className="mb-4 text-2xl font-bold text-white">
|
||||
Hablemos de tu proyecto
|
||||
</h3>
|
||||
<p className="text-lg" style={{ color: '#64B5F6' }}>
|
||||
@@ -728,15 +782,15 @@ export default function LandingAnimated() {
|
||||
subtitle: 'Visitas con cita previa'
|
||||
}
|
||||
].map((contact, idx) => (
|
||||
<div key={idx} className="flex items-start space-x-4 p-4 rounded-xl bg-white/5 hover:bg-white/10 transition-all duration-300">
|
||||
<div className="w-14 h-14 flex items-center justify-center rounded-full" style={{ backgroundColor: '#4DA6FF' }}>
|
||||
<svg className="w-7 h-7 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<div key={idx} className="flex items-start p-4 space-x-4 transition-all duration-300 rounded-xl bg-white/5 hover:bg-white/10">
|
||||
<div className="flex items-center justify-center rounded-full w-14 h-14" style={{ backgroundColor: '#4DA6FF' }}>
|
||||
<svg className="text-white w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d={contact.icon} />
|
||||
</svg>
|
||||
</div>
|
||||
<div className="flex-1">
|
||||
<h4 className="font-bold text-white text-lg">{contact.title}</h4>
|
||||
<p className="font-semibold mb-1" style={{ color: '#4DA6FF' }}>{contact.info}</p>
|
||||
<h4 className="text-lg font-bold text-white">{contact.title}</h4>
|
||||
<p className="mb-1 font-semibold" style={{ color: '#4DA6FF' }}>{contact.info}</p>
|
||||
<p className="text-sm" style={{ color: '#64B5F6' }}>{contact.subtitle}</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -744,10 +798,10 @@ export default function LandingAnimated() {
|
||||
</div>
|
||||
|
||||
{/* Botón adicional para WhatsApp */}
|
||||
<div className="mt-8 pt-6 border-t border-white/20">
|
||||
<div className="pt-6 mt-8 border-t border-white/20">
|
||||
<a
|
||||
href="#"
|
||||
className="flex items-center justify-center w-full py-4 px-6 rounded-xl font-semibold text-white transition-all duration-300 transform hover:scale-105"
|
||||
className="flex items-center justify-center w-full px-6 py-4 font-semibold text-white transition-all duration-300 transform rounded-xl hover:scale-105"
|
||||
style={{
|
||||
background: 'linear-gradient(45deg, #25D366, #128C7E)'
|
||||
}}
|
||||
@@ -769,10 +823,10 @@ export default function LandingAnimated() {
|
||||
: 'opacity-0 translate-x-10'
|
||||
}`}
|
||||
>
|
||||
<h3 className="text-2xl font-bold mb-6" style={{ color: '#333333' }}>Solicita una demostración</h3>
|
||||
<h3 className="mb-6 text-2xl font-bold" style={{ color: '#333333' }}>Solicita una demostración</h3>
|
||||
<form onSubmit={handleContactSubmit} className="space-y-4">
|
||||
<div>
|
||||
<label className="block text-sm font-semibold mb-2" style={{ color: '#333333' }}>
|
||||
<label className="block mb-2 text-sm font-semibold" style={{ color: '#333333' }}>
|
||||
Nombre completo
|
||||
</label>
|
||||
<input
|
||||
@@ -780,7 +834,7 @@ export default function LandingAnimated() {
|
||||
required
|
||||
value={contactForm.name}
|
||||
onChange={(e) => setContactForm({...contactForm, name: e.target.value})}
|
||||
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent transition-all duration-200"
|
||||
className="w-full px-4 py-3 transition-all duration-200 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent"
|
||||
style={{
|
||||
focusRingColor: '#4DA6FF',
|
||||
outline: 'none'
|
||||
@@ -792,7 +846,7 @@ export default function LandingAnimated() {
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label className="block text-sm font-semibold mb-2" style={{ color: '#333333' }}>
|
||||
<label className="block mb-2 text-sm font-semibold" style={{ color: '#333333' }}>
|
||||
Email corporativo
|
||||
</label>
|
||||
<input
|
||||
@@ -800,7 +854,7 @@ export default function LandingAnimated() {
|
||||
required
|
||||
value={contactForm.email}
|
||||
onChange={(e) => setContactForm({...contactForm, email: e.target.value})}
|
||||
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent transition-all duration-200"
|
||||
className="w-full px-4 py-3 transition-all duration-200 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent"
|
||||
onFocus={(e) => e.target.style.borderColor = '#4DA6FF'}
|
||||
onBlur={(e) => e.target.style.borderColor = '#d1d5db'}
|
||||
placeholder="tu@empresa.com"
|
||||
@@ -808,7 +862,7 @@ export default function LandingAnimated() {
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label className="block text-sm font-semibold mb-2" style={{ color: '#333333' }}>
|
||||
<label className="block mb-2 text-sm font-semibold" style={{ color: '#333333' }}>
|
||||
Empresa
|
||||
</label>
|
||||
<input
|
||||
@@ -816,7 +870,7 @@ export default function LandingAnimated() {
|
||||
required
|
||||
value={contactForm.company}
|
||||
onChange={(e) => setContactForm({...contactForm, company: e.target.value})}
|
||||
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent transition-all duration-200"
|
||||
className="w-full px-4 py-3 transition-all duration-200 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent"
|
||||
onFocus={(e) => e.target.style.borderColor = '#4DA6FF'}
|
||||
onBlur={(e) => e.target.style.borderColor = '#d1d5db'}
|
||||
placeholder="Nombre de tu empresa"
|
||||
@@ -824,14 +878,14 @@ export default function LandingAnimated() {
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label className="block text-sm font-semibold mb-2" style={{ color: '#333333' }}>
|
||||
<label className="block mb-2 text-sm font-semibold" style={{ color: '#333333' }}>
|
||||
Mensaje
|
||||
</label>
|
||||
<textarea
|
||||
rows="4"
|
||||
value={contactForm.message}
|
||||
onChange={(e) => setContactForm({...contactForm, message: e.target.value})}
|
||||
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent transition-all duration-200"
|
||||
className="w-full px-4 py-3 transition-all duration-200 border border-gray-300 rounded-lg focus:ring-2 focus:border-transparent"
|
||||
onFocus={(e) => e.target.style.borderColor = '#4DA6FF'}
|
||||
onBlur={(e) => e.target.style.borderColor = '#d1d5db'}
|
||||
placeholder="Cuéntanos sobre tu operación aduanal..."
|
||||
@@ -860,11 +914,11 @@ export default function LandingAnimated() {
|
||||
</section>
|
||||
|
||||
{/* Footer */}
|
||||
<footer className="text-white py-12" style={{ backgroundColor: '#1B2A41' }}>
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
|
||||
<footer className="py-12 text-white" style={{ backgroundColor: '#1B2A41' }}>
|
||||
<div className="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||
<div className="grid grid-cols-1 gap-8 md:grid-cols-4">
|
||||
<div className="col-span-1 md:col-span-2">
|
||||
<h3 className="text-2xl font-bold mb-4">
|
||||
<h3 className="mb-4 text-2xl font-bold">
|
||||
<span style={{
|
||||
background: 'linear-gradient(to right, #4DA6FF, #64B5F6)',
|
||||
WebkitBackgroundClip: 'text',
|
||||
@@ -873,13 +927,13 @@ export default function LandingAnimated() {
|
||||
EFC
|
||||
</span>
|
||||
</h3>
|
||||
<p className="mb-2 max-w-md" style={{ color: '#7A7A7A' }}>
|
||||
{/* <p className="max-w-md mb-2" style={{ color: '#7A7A7A' }}>
|
||||
Uso correcto <span className="font-semibold" style={{ color: '#4DA6FF' }}>Aduanasoft®</span>
|
||||
</p>
|
||||
<ul className="mb-4 text-sm text-gray-300 space-y-1">
|
||||
</p> */}
|
||||
{/* <ul className="mb-4 space-y-1 text-sm text-gray-300">
|
||||
<li><span className="font-bold text-white">+350</span> clientes en todo el país</li>
|
||||
<li><span className="font-bold text-white">29 años</span> de experiencia</li>
|
||||
</ul>
|
||||
</ul> */}
|
||||
<div className="flex space-x-4">
|
||||
<a href="https://www.facebook.com/AduanaSoftMX" target="_blank" rel="noopener noreferrer" className="transition-colors duration-200" style={{ color: '#7A7A7A' }} onMouseEnter={e => e.target.style.color = 'white'} onMouseLeave={e => e.target.style.color = '#7A7A7A'} title="Facebook">
|
||||
<svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24"><path d="M22.675 0h-21.35C.595 0 0 .592 0 1.326v21.348C0 23.408.595 24 1.325 24h11.495v-9.294H9.692v-3.622h3.128V8.413c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.797.143v3.24l-1.918.001c-1.504 0-1.797.715-1.797 1.763v2.313h3.587l-.467 3.622h-3.12V24h6.116C23.406 24 24 23.408 24 22.674V1.326C24 .592 23.406 0 22.675 0"/></svg>
|
||||
@@ -903,29 +957,29 @@ export default function LandingAnimated() {
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4 className="font-semibold mb-4">Producto</h4>
|
||||
<h4 className="mb-4 font-semibold">Producto</h4>
|
||||
<ul className="space-y-2 text-gray-400">
|
||||
<li><button onClick={() => scrollToSection('caracteristicas')} className="hover:text-white transition-colors duration-200">Características</button></li>
|
||||
<li><button onClick={() => scrollToSection('precios')} className="hover:text-white transition-colors duration-200">Precios</button></li>
|
||||
<li><a href="#" className="hover:text-white transition-colors duration-200">Integraciónes</a></li>
|
||||
<li><a href="#" className="hover:text-white transition-colors duration-200">API</a></li>
|
||||
<li><button onClick={() => scrollToSection('caracteristicas')} className="transition-colors duration-200 hover:text-white">Características</button></li>
|
||||
<li><button onClick={() => scrollToSection('precios')} className="transition-colors duration-200 hover:text-white">Precios</button></li>
|
||||
<li><a href="#" className="transition-colors duration-200 hover:text-white">Integraciónes</a></li>
|
||||
<li><a href="#" className="transition-colors duration-200 hover:text-white">API</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4 className="font-semibold mb-4">Soporte</h4>
|
||||
<h4 className="mb-4 font-semibold">Soporte</h4>
|
||||
<ul className="space-y-2 text-gray-400">
|
||||
<li><button onClick={() => scrollToSection('contacto')} className="hover:text-white transition-colors duration-200">Contacto</button></li>
|
||||
<li><a href="#" className="hover:text-white transition-colors duration-200">Documentación</a></li>
|
||||
<li><a href="#" className="hover:text-white transition-colors duration-200">Centro de Ayuda</a></li>
|
||||
<li><a href="#" className="hover:text-white transition-colors duration-200">Status</a></li>
|
||||
<li><button onClick={() => scrollToSection('contacto')} className="transition-colors duration-200 hover:text-white">Contacto</button></li>
|
||||
<li><a href="#" className="transition-colors duration-200 hover:text-white">Documentación</a></li>
|
||||
<li><a href="#" className="transition-colors duration-200 hover:text-white">Centro de Ayuda</a></li>
|
||||
<li><a href="#" className="transition-colors duration-200 hover:text-white">Status</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
|
||||
<div className="pt-8 mt-8 text-center text-gray-400 border-t border-gray-800">
|
||||
<p>
|
||||
© 2025 EFC by <span className="font-semibold text-indigo-400">@AduanaSoft</span>.
|
||||
© {currentYear} EFC by <span className="font-semibold text-white">Aduanasoft®</span>.
|
||||
Todos los derechos reservados. | Solución especializada para Agentes Aduanales e Importadores.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@@ -2827,6 +2827,237 @@ const handleDeleteSelectedPedimentoDocuments = async () => {
|
||||
const isPartida = selectedDocumentForUpload?.tab === 'partida';
|
||||
const isCove = selectedDocumentForUpload?.tab === 'cove';
|
||||
const isEdoc = selectedDocumentForUpload?.tab === 'edoc';
|
||||
|
||||
// Estados para documentos de errores VU
|
||||
const [errorDocuments, setErrorDocuments] = useState([]);
|
||||
const [errorDocsCount, setErrorDocsCount] = useState(0);
|
||||
const [errorDocsLoading, setErrorDocsLoading] = useState(true);
|
||||
const [errorDocsError, setErrorDocsError] = useState('');
|
||||
const [errorDocsPage, setErrorDocsPage] = useState(1);
|
||||
const [errorDocsPageSize, setErrorDocsPageSize] = useState(10);
|
||||
const [selectedErrorDocuments, setSelectedErrorDocuments] = useState([]);
|
||||
const [isSelectAllErrorDocs, setIsSelectAllErrorDocs] = useState(false);
|
||||
const [downloadingAllErrors, setDownloadingAllErrors] = useState(false);
|
||||
|
||||
// Filtros para errores VU
|
||||
const [errorFilters, setErrorFilters] = useState({
|
||||
name: '',
|
||||
document_type: '',
|
||||
extension: '',
|
||||
date: '',
|
||||
created_at__gte: '',
|
||||
created_at__lte: '',
|
||||
fuente: '',
|
||||
pedimento_numero: '',
|
||||
tipo_error: ''
|
||||
});
|
||||
|
||||
// Estado para mostrar filtros de errores
|
||||
const [showErrorFilters, setShowErrorFilters] = useState(false);
|
||||
|
||||
// Efecto para cargar documentos de errores VU
|
||||
useEffect(() => {
|
||||
// Función para obtener documentos de errores VU usando el endpoint específico
|
||||
const fetchErrorDocuments = async (pedimentoId,page = 1, pageSize = 10, filters = {}) => {
|
||||
try {
|
||||
if (!id || !pedimento?.pedimento_app) return;
|
||||
|
||||
// Construir parámetros de filtros
|
||||
const params = new URLSearchParams({
|
||||
pedimento: pedimento.pedimento_app, // Usar pedimento_app como requiere el endpoint
|
||||
pedimentoId: pedimentoId,
|
||||
// document_type_id: [14,16,18,20,22,24,26], IDs de tipos de documentos de error VU
|
||||
page: page,
|
||||
page_size: pageSize
|
||||
});
|
||||
|
||||
// Solo agregar filtros que tengan valores
|
||||
Object.entries(filters).forEach(([key, value]) => {
|
||||
if (value && value.toString().trim() !== '') {
|
||||
params.append(key, value);
|
||||
}
|
||||
});
|
||||
|
||||
// Usar el endpoint específico para documentos de error VU
|
||||
const response = await fetchWithAuth(
|
||||
`${API_URL}/record/documents/vu-documentos-errores/?${params}`
|
||||
);
|
||||
|
||||
if (!response.ok) {
|
||||
const errorData = await response.json().catch(() => ({}));
|
||||
throw new Error(errorData.error || `Error ${response.status} al obtener documentos de error VU`);
|
||||
}
|
||||
|
||||
const data = await response.json();
|
||||
|
||||
// El endpoint devuelve un array directo, no un objeto paginado
|
||||
// Aplicamos paginación manualmente en el frontend
|
||||
if (Array.isArray(data)) {
|
||||
const startIndex = (page - 1) * pageSize;
|
||||
const endIndex = startIndex + pageSize;
|
||||
const paginatedResults = data.slice(startIndex, endIndex);
|
||||
|
||||
return {
|
||||
results: paginatedResults,
|
||||
count: data.length,
|
||||
next: endIndex < data.length ? page + 1 : null,
|
||||
previous: page > 1 ? page - 1 : null
|
||||
};
|
||||
}
|
||||
|
||||
// Si por alguna razón devuelve un objeto paginado
|
||||
return data;
|
||||
|
||||
} catch (error) {
|
||||
console.error('Error fetching error documents:', error);
|
||||
throw error;
|
||||
}
|
||||
};
|
||||
|
||||
if (!id || !pedimento || activeTab !== 'errores') return;
|
||||
|
||||
console.log('Fetching error documents for pedimento:', pedimento.pedimento_app);
|
||||
setErrorDocsLoading(true);
|
||||
setErrorDocsError('');
|
||||
|
||||
// Construir parámetros de filtros
|
||||
const apiFilters = {};
|
||||
if (errorFilters.name) apiFilters.archivo__icontains = errorFilters.name;
|
||||
if (errorFilters.extension) apiFilters.extension = errorFilters.extension;
|
||||
if (errorFilters.date) apiFilters.created_at__date = errorFilters.date;
|
||||
if (errorFilters.created_at__gte) apiFilters.created_at__gte = errorFilters.created_at__gte;
|
||||
if (errorFilters.created_at__lte) apiFilters.created_at__lte = errorFilters.created_at__lte;
|
||||
if (errorFilters.fuente) apiFilters.fuente = errorFilters.fuente;
|
||||
if (errorFilters.tipo_error) {
|
||||
apiFilters.tipo_error = errorFilters.tipo_error;
|
||||
}else{
|
||||
apiFilters.tipo_error = [14,16,18,20,22,24,26];
|
||||
}
|
||||
|
||||
// NOTA: No necesitamos document_type porque el endpoint ya filtra por documentos de error VU
|
||||
// Tampoco necesitamos pedimento_numero porque ya estamos filtrando por pedimento
|
||||
|
||||
fetchErrorDocuments(id,errorDocsPage, errorDocsPageSize, apiFilters)
|
||||
.then((data) => {
|
||||
console.log('Error documents data:', data);
|
||||
setErrorDocuments(data.results || []);
|
||||
setErrorDocsCount(data.count || 0);
|
||||
setErrorDocsLoading(false);
|
||||
})
|
||||
.catch(err => {
|
||||
console.error('Error fetching error documents:', err);
|
||||
if (err.message === 'SESSION_EXPIRED') {
|
||||
showMessage('Tu sesión ha expirado, por favor inicia sesión de nuevo.', 'error');
|
||||
} else {
|
||||
setErrorDocsError(err.message || 'Error al cargar documentos de error VU');
|
||||
}
|
||||
setErrorDocsLoading(false);
|
||||
});
|
||||
}, [id, activeTab, errorDocsPage, errorDocsPageSize, errorFilters, showMessage, pedimento]);
|
||||
|
||||
// Resetear página cuando cambien los filtros de errores
|
||||
useEffect(() => {
|
||||
setErrorDocsPage(1);
|
||||
}, [errorFilters]);
|
||||
|
||||
// Efecto para actualizar isSelectAllErrorDocs cuando cambia la selección
|
||||
useEffect(() => {
|
||||
if (errorDocuments.length > 0) {
|
||||
const allSelected = errorDocuments.every(doc => selectedErrorDocuments.includes(doc.id));
|
||||
setIsSelectAllErrorDocs(allSelected && selectedErrorDocuments.length > 0);
|
||||
}
|
||||
}, [selectedErrorDocuments, errorDocuments]);
|
||||
|
||||
|
||||
// Efecto para limpiar selección cuando cambia de página
|
||||
useEffect(() => {
|
||||
setSelectedErrorDocuments([]);
|
||||
setIsSelectAllErrorDocs(false);
|
||||
}, [errorDocsPage]);
|
||||
|
||||
// Funciones para manejo de selección múltiple de documentos de error
|
||||
const handleSelectErrorDocument = (documentId) => {
|
||||
const isSelected = selectedErrorDocuments.includes(documentId);
|
||||
if (isSelected) {
|
||||
setSelectedErrorDocuments(prev => prev.filter(id => id !== documentId));
|
||||
} else {
|
||||
setSelectedErrorDocuments(prev => [...prev, documentId]);
|
||||
}
|
||||
};
|
||||
|
||||
const handleSelectAllErrorDocuments = () => {
|
||||
if (isSelectAllErrorDocs) {
|
||||
setSelectedErrorDocuments([]);
|
||||
setIsSelectAllErrorDocs(false);
|
||||
} else {
|
||||
const allDocumentIds = errorDocuments.map(doc => doc.id);
|
||||
setSelectedErrorDocuments(allDocumentIds);
|
||||
setIsSelectAllErrorDocs(true);
|
||||
}
|
||||
};
|
||||
|
||||
// Función para eliminar documentos de error seleccionados
|
||||
const handleDeleteSelectedErrorDocuments = async () => {
|
||||
if (selectedErrorDocuments.length === 0) {
|
||||
showMessage('No hay documentos seleccionados para eliminar', 'warning');
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
showMessage(`Eliminando ${selectedErrorDocuments.length} documento(s) de error...`, 'info');
|
||||
|
||||
const response = await fetchWithAuth(`${API_URL}/record/documents/bulk-delete/`, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify({
|
||||
ids: selectedErrorDocuments
|
||||
})
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
const errorData = await response.json().catch(() => null);
|
||||
throw new Error(errorData?.detail || errorData?.message || `Error ${response.status}: ${response.statusText}`);
|
||||
}
|
||||
|
||||
const result = await response.json();
|
||||
|
||||
showMessage(
|
||||
`${result.deleted_count || selectedErrorDocuments.length} documento(s) de error eliminado(s) exitosamente`,
|
||||
'success'
|
||||
);
|
||||
|
||||
setSelectedErrorDocuments([]);
|
||||
setIsSelectAllErrorDocs(false);
|
||||
|
||||
// Forzar recarga de documentos
|
||||
const currentPage = errorDocsPage;
|
||||
setErrorDocsPage(0);
|
||||
setTimeout(() => setErrorDocsPage(currentPage), 100);
|
||||
} catch (error) {
|
||||
console.error('Error durante la eliminación masiva de documentos de error:', error);
|
||||
showMessage(`Error durante la eliminación: ${error.message}`, 'error');
|
||||
}
|
||||
};
|
||||
|
||||
// Función para descargar todos los documentos de error
|
||||
const downloadAllErrors = async () => {
|
||||
setDownloadingAllErrors(true);
|
||||
try {
|
||||
const allErrorDocIds = errorDocuments.map(doc => doc.id);
|
||||
await handleBulkDownload(allErrorDocIds);
|
||||
} catch (error) {
|
||||
console.error('Error downloading all error documents:', error);
|
||||
showMessage('Error al descargar todos los documentos de error', 'error');
|
||||
} finally {
|
||||
setDownloadingAllErrors(false);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
//----------------------------------------//
|
||||
|
||||
// Estados de carga
|
||||
@@ -3044,7 +3275,29 @@ const isEdoc = selectedDocumentForUpload?.tab === 'edoc';
|
||||
)}
|
||||
</div>
|
||||
</button>
|
||||
|
||||
{/* Pestaña Errores VU */}
|
||||
<button
|
||||
onClick={() => handleTabChange('errores')}
|
||||
className={`whitespace-nowrap py-3 sm:py-4 px-2 sm:px-3 lg:px-1 border-b-2 font-medium text-xs sm:text-sm transition-all duration-200 ${
|
||||
activeTab === 'errores'
|
||||
? 'border-red-600 text-red-600 bg-red-50/50'
|
||||
: 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'
|
||||
}`}
|
||||
>
|
||||
<div className="flex items-center space-x-1 sm:space-x-2">
|
||||
<svg className="w-4 h-4 sm:w-5 sm:h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.664-.833-2.464 0L4.35 16.5c-.77.833.192 2.5 1.732 2.5z" />
|
||||
</svg>
|
||||
<span className="hidden sm:inline">Errores VU</span>
|
||||
<span className="sm:hidden">Errores</span>
|
||||
{activeTab === 'errores' && errorDocsCount > 0 && (
|
||||
<span className="bg-red-100 text-red-600 text-xs font-semibold px-1.5 py-0.5 sm:px-2 sm:py-1 rounded-full">
|
||||
{errorDocsCount}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
</button>
|
||||
|
||||
{/* Pestaña Auditor */}
|
||||
<button
|
||||
onClick={() => handleTabChange('auditor')}
|
||||
@@ -5394,8 +5647,6 @@ const isEdoc = selectedDocumentForUpload?.tab === 'edoc';
|
||||
</div>
|
||||
)}
|
||||
|
||||
|
||||
|
||||
{activeTab === 'auditor' && (
|
||||
<div className="p-6">
|
||||
{/* Header de la sección */}
|
||||
@@ -5885,6 +6136,429 @@ const isEdoc = selectedDocumentForUpload?.tab === 'edoc';
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* NUEVO CONTENIDO PARA TAB DE ERRORES VU */}
|
||||
{activeTab === 'errores' && (
|
||||
<div className="p-6">
|
||||
{/* Header de la sección */}
|
||||
<div className="mb-4 space-y-3 sm:mb-6 sm:space-y-4">
|
||||
<div className="flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between sm:gap-4">
|
||||
<div className="flex flex-col gap-2 sm:flex-row sm:items-center sm:gap-4">
|
||||
<h3 className="text-lg font-semibold text-gray-900 sm:text-xl">
|
||||
Documentos de Error VU
|
||||
</h3>
|
||||
<span className="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-red-100 text-red-800 w-fit">
|
||||
{errorDocsCount} documentos
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col gap-2 sm:flex-row sm:gap-3">
|
||||
{errorDocuments.length > 0 && (
|
||||
<>
|
||||
<button
|
||||
onClick={downloadAllErrors}
|
||||
disabled={downloadingAllErrors}
|
||||
className="inline-flex items-center justify-center px-3 py-2 text-sm font-medium leading-4 text-white bg-red-600 border border-transparent rounded-md hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 disabled:opacity-50"
|
||||
>
|
||||
{downloadingAllErrors ? (
|
||||
<>
|
||||
<svg className="w-4 h-4 mr-2 -ml-1 text-white animate-spin" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
||||
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
||||
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
||||
</svg>
|
||||
<span className="hidden sm:inline">Descargando...</span>
|
||||
<span className="sm:hidden">Descargando...</span>
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<svg className="w-4 h-4 mr-1 sm:mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4" />
|
||||
</svg>
|
||||
<span className="hidden sm:inline">Descargar Todos</span>
|
||||
<span className="sm:hidden">Descargar</span>
|
||||
</>
|
||||
)}
|
||||
</button>
|
||||
|
||||
<button
|
||||
onClick={() => setShowErrorFilters(!showErrorFilters)}
|
||||
className="inline-flex items-center justify-center px-3 py-2 text-sm font-medium leading-4 text-gray-700 bg-white border border-gray-300 rounded-md shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500"
|
||||
>
|
||||
<svg className="w-4 h-4 mr-1 sm:mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M3 4a1 1 0 011-1h16a1 1 0 011 1v2.586a1 1 0 01-.293.707l-6.414 6.414a1 1 0 00-.293.707V17l-4 4v-6.586a1 1 0 00-.293-.707L3.293 7.414A1 1 0 013 6.707V4z" />
|
||||
</svg>
|
||||
<span className="hidden sm:inline">{showErrorFilters ? 'Ocultar Filtros' : 'Mostrar Filtros'}</span>
|
||||
<span className="sm:hidden">Filtros</span>
|
||||
</button>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Filtros expandibles para errores */}
|
||||
{showErrorFilters && (
|
||||
<div className="grid grid-cols-1 gap-4 p-4 border rounded-lg md:grid-cols-2 lg:grid-cols-4 bg-red-50">
|
||||
<div>
|
||||
<label className="block mb-1 text-sm font-medium text-gray-700">
|
||||
Buscar por nombre
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
value={errorFilters.name}
|
||||
onChange={(e) => setErrorFilters(prev => ({ ...prev, name: e.target.value }))}
|
||||
placeholder="Nombre del archivo..."
|
||||
className="w-full px-3 py-2 placeholder-gray-400 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-red-500 focus:border-red-500 sm:text-sm"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label className="block mb-1 text-sm font-medium text-gray-700">
|
||||
Extensión
|
||||
</label>
|
||||
<select
|
||||
value={errorFilters.extension}
|
||||
onChange={(e) => setErrorFilters(prev => ({ ...prev, extension: e.target.value }))}
|
||||
className="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-red-500 focus:border-red-500 sm:text-sm"
|
||||
>
|
||||
<option value="">Todas las extensiones</option>
|
||||
<option value="pdf">PDF</option>
|
||||
<option value="xml">XML</option>
|
||||
<option value="jpg">JPG</option>
|
||||
<option value="png">PNG</option>
|
||||
<option value="doc">DOC</option>
|
||||
<option value="docx">DOCX</option>
|
||||
<option value="xls">XLS</option>
|
||||
<option value="xlsx">XLSX</option>
|
||||
<option value="txt">TXT</option>
|
||||
<option value="csv">CSV</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label className="block mb-1 text-sm font-medium text-gray-700">
|
||||
Fuente
|
||||
</label>
|
||||
<select
|
||||
value={errorFilters.fuente || ''}
|
||||
onChange={(e) => setErrorFilters(prev => ({ ...prev, fuente: e.target.value }))}
|
||||
className="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-red-500 focus:border-red-500 sm:text-sm"
|
||||
>
|
||||
<option value="">Todas las fuentes</option>
|
||||
<option value="1">Manual</option>
|
||||
<option value="2">VU</option>
|
||||
<option value="3">Importación</option>
|
||||
<option value="4">Sistema</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label className="block mb-1 text-sm font-medium text-gray-700">
|
||||
Tipo de Error
|
||||
</label>
|
||||
<select
|
||||
value={errorFilters.tipo_error || ''}
|
||||
onChange={(e) => setErrorFilters(prev => ({ ...prev, tipo_error: e.target.value }))}
|
||||
className="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-red-500 focus:border-red-500 sm:text-sm"
|
||||
>
|
||||
<option value="">Todos los errores</option>
|
||||
<option value="14">Error Pedimento Completo VU</option>
|
||||
<option value="16">Error Remesa VU</option>
|
||||
<option value="18">Error Partidas VU</option>
|
||||
<option value="20">Error COVES VU</option>
|
||||
<option value="22">Error Edocuments VU</option>
|
||||
<option value="24">Error Acuse COVES VU</option>
|
||||
<option value="26">Error Acuse Edocuments VU</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
{/* <div>
|
||||
<label className="block mb-1 text-sm font-medium text-gray-700">
|
||||
Fecha de creación
|
||||
</label>
|
||||
<input
|
||||
type="date"
|
||||
value={errorFilters.date}
|
||||
onChange={(e) => setErrorFilters(prev => ({ ...prev, date: e.target.value }))}
|
||||
className="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-red-500 focus:border-red-500 sm:text-sm"
|
||||
/>
|
||||
</div> */}
|
||||
|
||||
<div className="flex items-end">
|
||||
<button
|
||||
onClick={() => setErrorFilters({
|
||||
name: '',
|
||||
document_type: '',
|
||||
extension: '',
|
||||
date: '',
|
||||
created_at__gte: '',
|
||||
created_at__lte: '',
|
||||
fuente: '',
|
||||
pedimento_numero: ''
|
||||
})}
|
||||
className="w-full px-3 py-2 text-sm font-medium text-gray-600 transition-colors bg-gray-100 rounded-md hover:bg-gray-200"
|
||||
>
|
||||
Limpiar filtros
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* Área de acciones para documentos de error seleccionados */}
|
||||
{selectedErrorDocuments.length > 0 && (
|
||||
<div className="mb-4 overflow-hidden border border-red-200 bg-gradient-to-r from-red-50 to-pink-50 rounded-2xl">
|
||||
<div className="px-6 py-4 border-b border-red-200">
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-center gap-3">
|
||||
<div className="p-2 bg-red-100 rounded-full">
|
||||
<svg className="w-5 h-5 text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="text-lg font-semibold text-gray-900">
|
||||
{selectedErrorDocuments.length} documento{selectedErrorDocuments.length !== 1 ? 's' : ''} de error seleccionado{selectedErrorDocuments.length !== 1 ? 's' : ''}
|
||||
</h3>
|
||||
<p className="text-sm text-gray-600">Selecciona una acción para continuar</p>
|
||||
</div>
|
||||
</div>
|
||||
<button
|
||||
onClick={() => {
|
||||
setSelectedErrorDocuments([]);
|
||||
setIsSelectAllErrorDocs(false);
|
||||
}}
|
||||
className="text-gray-400 transition-colors hover:text-gray-600"
|
||||
title="Limpiar selección"
|
||||
>
|
||||
<svg className="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="px-6 py-4">
|
||||
<div className="flex flex-wrap gap-3">
|
||||
<button
|
||||
onClick={handleDeleteSelectedErrorDocuments}
|
||||
className="inline-flex items-center px-4 py-2 font-medium text-white transition-colors duration-200 bg-red-600 rounded-lg shadow-sm hover:bg-red-700 hover:shadow-md"
|
||||
>
|
||||
<svg className="w-5 h-5 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
|
||||
</svg>
|
||||
Eliminar seleccionados
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{errorDocsLoading ? (
|
||||
<div className="flex items-center justify-center py-12">
|
||||
<div className="w-8 h-8 border-b-2 border-red-600 rounded-full animate-spin"></div>
|
||||
<span className="ml-2 text-gray-600">Cargando documentos de error...</span>
|
||||
</div>
|
||||
) : errorDocsError ? (
|
||||
<div className="py-12 text-center">
|
||||
<div className="mb-2 text-red-600">
|
||||
<svg className="w-12 h-12 mx-auto" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.664-.833-2.464 0L4.35 16.5c-.77.833.192 2.5 1.732 2.5z" />
|
||||
</svg>
|
||||
</div>
|
||||
<h3 className="mb-1 text-lg font-medium text-gray-900">Error al cargar documentos de error</h3>
|
||||
<p className="text-gray-600">{errorDocsError}</p>
|
||||
</div>
|
||||
) : errorDocuments.length === 0 ? (
|
||||
<div className="py-12 text-center">
|
||||
<svg className="w-12 h-12 mx-auto text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
<h3 className="mt-2 text-sm font-medium text-gray-900">No hay documentos de error</h3>
|
||||
<p className="mt-1 text-sm text-gray-500">
|
||||
No se encontraron documentos de error VU para este pedimento.
|
||||
</p>
|
||||
</div>
|
||||
) : (
|
||||
<div className="space-y-4">
|
||||
{/* Tabla de documentos de error */}
|
||||
<div className="overflow-hidden rounded-lg shadow ring-1 ring-black ring-opacity-5">
|
||||
<div className="overflow-x-auto">
|
||||
<table className="min-w-full divide-y divide-gray-300">
|
||||
<thead className="bg-gray-50">
|
||||
<tr>
|
||||
<th scope="col" className="px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">
|
||||
<input
|
||||
type="checkbox"
|
||||
checked={isSelectAllErrorDocs}
|
||||
onChange={handleSelectAllErrorDocuments}
|
||||
className="w-4 h-4 text-red-600 border-gray-300 rounded focus:ring-red-500"
|
||||
/>
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">
|
||||
Documento
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">
|
||||
Tipo
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">
|
||||
Extensión
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">
|
||||
Tamaño
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">
|
||||
Fuente
|
||||
</th>
|
||||
<th scope="col" className="px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-500 uppercase">
|
||||
Fecha de Creación
|
||||
</th>
|
||||
<th scope="col" className="relative px-6 py-3">
|
||||
<span className="sr-only">Acciones</span>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody className="bg-white divide-y divide-gray-200">
|
||||
{errorDocuments.map((doc, index) => (
|
||||
<tr key={`${doc.id}-${index}`} className="hover:bg-gray-50">
|
||||
<td className="px-6 py-4 whitespace-nowrap">
|
||||
<input
|
||||
type="checkbox"
|
||||
checked={selectedErrorDocuments.includes(doc.id)}
|
||||
onChange={() => handleSelectErrorDocument(doc.id)}
|
||||
className="w-4 h-4 text-red-600 border-gray-300 rounded focus:ring-red-500"
|
||||
/>
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap">
|
||||
<div className="flex items-center">
|
||||
<div className="flex-shrink-0 w-10 h-10">
|
||||
<div className="flex items-center justify-center w-10 h-10 bg-red-100 rounded-lg">
|
||||
<svg className="w-6 h-6 text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.664-.833-2.464 0L4.35 16.5c-.77.833.192 2.5 1.732 2.5z" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
<div className="ml-4">
|
||||
<div className="text-sm font-medium text-gray-900" title={doc.archivo}>
|
||||
{doc.archivo ? doc.archivo.split('/').pop() : 'Sin nombre'}
|
||||
</div>
|
||||
<div className="text-sm text-gray-500">
|
||||
Pedimento: {doc.pedimento_numero || 'N/A'}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap">
|
||||
<span className="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-red-100 text-red-800">
|
||||
{getDocumentTypeName(doc.document_type)}
|
||||
</span>
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap">
|
||||
<span className="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800">
|
||||
{doc.extension ? doc.extension.toUpperCase() : 'N/A'}
|
||||
</span>
|
||||
</td>
|
||||
<td className="px-6 py-4 text-sm text-gray-900 whitespace-nowrap">
|
||||
{formatFileSize(doc.size)}
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap">
|
||||
<span className="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-gray-100 text-gray-800">
|
||||
{doc.fuente_nombre}
|
||||
</span>
|
||||
</td>
|
||||
<td className="px-6 py-4 text-sm text-gray-500 whitespace-nowrap">
|
||||
{formatDate(doc.created_at)}
|
||||
</td>
|
||||
<td className="px-6 py-4 text-sm font-medium text-right whitespace-nowrap">
|
||||
<div className="flex items-center space-x-2">
|
||||
<button
|
||||
onClick={() => previewDocument(doc)}
|
||||
className="p-1 text-blue-600 rounded hover:text-blue-900"
|
||||
title="Vista previa"
|
||||
>
|
||||
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
||||
</svg>
|
||||
</button>
|
||||
<button
|
||||
onClick={() => downloadDocument(doc)}
|
||||
className="p-1 text-green-600 rounded hover:text-green-900"
|
||||
title="Descargar"
|
||||
>
|
||||
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Paginación para documentos de error */}
|
||||
{errorDocsCount > 0 && (
|
||||
<div className="flex flex-col gap-4 mt-6 sm:flex-row sm:items-center sm:justify-between">
|
||||
<div className="flex flex-col gap-2 sm:flex-row sm:items-center sm:gap-4">
|
||||
<span className="text-sm text-gray-700">
|
||||
<span className="hidden sm:inline">Mostrando </span>
|
||||
<span className="font-medium">{((errorDocsPage - 1) * errorDocsPageSize) + 1}</span>-
|
||||
<span className="font-medium">{Math.min(errorDocsPage * errorDocsPageSize, errorDocsCount)}</span>
|
||||
<span className="hidden sm:inline">de </span>
|
||||
<span className="sm:hidden">/</span>
|
||||
<span className="font-medium">{errorDocsCount}</span>
|
||||
<span className="hidden sm:inline"> documentos</span>
|
||||
</span>
|
||||
<select
|
||||
value={errorDocsPageSize}
|
||||
onChange={(e) => {
|
||||
setErrorDocsPageSize(Number(e.target.value));
|
||||
setErrorDocsPage(1);
|
||||
}}
|
||||
className="w-full text-sm border-gray-300 rounded-md focus:ring-red-500 focus:border-red-500 sm:w-auto"
|
||||
>
|
||||
<option value={10}>10 por página</option>
|
||||
<option value={25}>25 por página</option>
|
||||
<option value={50}>50 por página</option>
|
||||
<option value={100}>100 por página</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center justify-center space-x-1 sm:justify-end sm:space-x-2">
|
||||
<button
|
||||
onClick={() => setErrorDocsPage(Math.max(1, errorDocsPage - 1))}
|
||||
disabled={errorDocsPage === 1}
|
||||
className="relative inline-flex items-center px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 rounded-l-md hover:bg-gray-50 disabled:opacity-50 disabled:cursor-not-allowed"
|
||||
>
|
||||
<span className="sr-only">Anterior</span>
|
||||
<svg className="w-5 h-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fillRule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clipRule="evenodd" />
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
<span className="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300">
|
||||
Página {errorDocsPage} de {Math.ceil(errorDocsCount / errorDocsPageSize)}
|
||||
</span>
|
||||
|
||||
<button
|
||||
onClick={() => setErrorDocsPage(Math.min(Math.ceil(errorDocsCount / errorDocsPageSize), errorDocsPage + 1))}
|
||||
disabled={errorDocsPage >= Math.ceil(errorDocsCount / errorDocsPageSize)}
|
||||
className="relative inline-flex items-center px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 rounded-r-md hover:bg-gray-50 disabled:opacity-50 disabled:cursor-not-allowed"
|
||||
>
|
||||
<span className="sr-only">Siguiente</span>
|
||||
<svg className="w-5 h-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path fillRule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clipRule="evenodd" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -67,7 +67,7 @@ const handleDownloadReport = async (reportId) => {
|
||||
export default function Reports() {
|
||||
// Estado para organizacion_id
|
||||
const [organizacionId, setOrganizacionId] = useState('');
|
||||
|
||||
|
||||
useEffect(() => {
|
||||
async function fetchOrgId() {
|
||||
try {
|
||||
@@ -81,6 +81,7 @@ export default function Reports() {
|
||||
}
|
||||
fetchOrgId();
|
||||
}, []);
|
||||
|
||||
// Handler for Generar Reporte in Cumplimiento tab
|
||||
const handleGenerarReporteCumplimiento = async () => {
|
||||
if (!organizacionId) {
|
||||
@@ -196,6 +197,7 @@ export default function Reports() {
|
||||
const [tourStep, setTourStep] = useState(0);
|
||||
|
||||
const [organizaciones, setOrganizaciones] = useState([]);
|
||||
const [importadores, setImportadores] = useState([]);
|
||||
|
||||
useEffect(() => {
|
||||
const fetchOrganizaciones = async () => {
|
||||
@@ -213,6 +215,23 @@ export default function Reports() {
|
||||
fetchOrganizaciones();
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
const fetchImportadores = async () => {
|
||||
try {
|
||||
const res = await fetch(
|
||||
`${import.meta.env.VITE_EFC_API_URL}/customs/importadores/`,
|
||||
{ method: 'GET', headers: { 'Authorization': `Bearer ${localStorage.getItem('access')}` }
|
||||
});
|
||||
const data = await res.json();
|
||||
setImportadores(data);
|
||||
} catch {
|
||||
console.error('Error fetching importadores:', err);
|
||||
setImportadores([]);
|
||||
}
|
||||
};
|
||||
fetchImportadores();
|
||||
}, []);
|
||||
|
||||
const [globalFilters, setGlobalFilters] = useState({
|
||||
rfc: '',
|
||||
fecha_pago_desde: '',
|
||||
@@ -240,13 +259,45 @@ export default function Reports() {
|
||||
</div>
|
||||
<div className="p-4">
|
||||
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">
|
||||
{/* Filtro por Organización */}
|
||||
<div className="group">
|
||||
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||
Organización
|
||||
</label>
|
||||
<div className="relative rounded-lg shadow-sm">
|
||||
<select
|
||||
value={globalFilters.organizacion || ''}
|
||||
onChange={(e) => setGlobalFilters(prev => ({
|
||||
...prev,
|
||||
organizacion: e.target.value
|
||||
}))}
|
||||
className="block w-full rounded-lg border-gray-300 pl-3 pr-10 py-2.5 text-gray-900 placeholder-gray-500
|
||||
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 sm:text-sm
|
||||
transition-all duration-200 bg-white appearance-none"
|
||||
>
|
||||
<option value="">Todas las organizaciones</option>
|
||||
{organizaciones.results && organizaciones.results.map(org => (
|
||||
<option key={org.id} value={org.id}>
|
||||
{org.nombre} {/* Usar el campo 'nombre' que sí existe */}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
<div className="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
||||
<svg className="h-5 w-5 text-gray-400 group-focus-within:text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Filtro por RFC */}
|
||||
<div className="group">
|
||||
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||
RFC
|
||||
</label>
|
||||
{/* modificar de input a select */}
|
||||
<div className="relative rounded-lg shadow-sm">
|
||||
<input
|
||||
{/* <input
|
||||
type="text"
|
||||
value={globalFilters.rfc || ''}
|
||||
onChange={(e) => setGlobalFilters(prev => ({
|
||||
@@ -257,7 +308,25 @@ export default function Reports() {
|
||||
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 sm:text-sm
|
||||
transition-all duration-200 bg-white"
|
||||
placeholder="Ej: ABC123456789"
|
||||
/>
|
||||
/> */}
|
||||
<select
|
||||
name="rfc"
|
||||
value={globalFilters.rfc || ''}
|
||||
onChange={(e) => setGlobalFilters(prev => ({
|
||||
...prev,
|
||||
rfc: e.target.value
|
||||
}))}
|
||||
className="w-full px-3 py-2 border border-green-300 rounded-md shadow-sm focus:ring-2 focus:ring-green-500 focus:border-green-500 transition-all duration-200 bg-white text-slate-900 text-sm font-mono uppercase"
|
||||
style={{ textTransform: 'uppercase' }}
|
||||
>
|
||||
<option value="" >Selecciona un RFC</option>
|
||||
{importadores.filter(imp => {
|
||||
if (!globalFilters.organizacion) return true;
|
||||
return imp.organizacion === globalFilters.organizacion;
|
||||
}).map(imp => (
|
||||
<option key={imp.rfc} value={imp.rfc}>{imp.rfc}</option>
|
||||
))}
|
||||
</select>
|
||||
<div className="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
||||
<svg className="h-5 w-5 text-gray-400 group-focus-within:text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
|
||||
@@ -367,37 +436,6 @@ export default function Reports() {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Filtro por Organización */}
|
||||
<div className="group">
|
||||
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||
Organización
|
||||
</label>
|
||||
<div className="relative rounded-lg shadow-sm">
|
||||
<select
|
||||
value={globalFilters.organizacion || ''}
|
||||
onChange={(e) => setGlobalFilters(prev => ({
|
||||
...prev,
|
||||
organizacion: e.target.value
|
||||
}))}
|
||||
className="block w-full rounded-lg border-gray-300 pl-3 pr-10 py-2.5 text-gray-900 placeholder-gray-500
|
||||
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 sm:text-sm
|
||||
transition-all duration-200 bg-white appearance-none"
|
||||
>
|
||||
<option value="">Todas las organizaciones</option>
|
||||
{organizaciones.results && organizaciones.results.map(org => (
|
||||
<option key={org.id} value={org.id}>
|
||||
{org.nombre} {/* Usar el campo 'nombre' que sí existe */}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
<div className="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
||||
<svg className="h-5 w-5 text-gray-400 group-focus-within:text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Botón para limpiar filtros globales */}
|
||||
|
||||
@@ -202,10 +202,13 @@ function RelacionarImportadoresModal({ open, onClose, vucem }) {
|
||||
}
|
||||
import React, { useEffect, useState } from 'react';
|
||||
import { fetchWithAuth, postWithAuth, putWithAuth, deleteWithAuth, putFormDataWithAuth, postFormDataWithAuth, patchWithAuth } from '../fetchWithAuth';
|
||||
import { useUser } from '../context/UserContext';
|
||||
|
||||
const API_URL = import.meta.env.VITE_EFC_API_URL;
|
||||
export default function Vucem() {
|
||||
// Estado para modal de relacionar importadores
|
||||
|
||||
const isDebugMode = import.meta.env.VITE_DEBUG_MODE === 'true';
|
||||
const [showRelacionarModal, setShowRelacionarModal] = useState(false);
|
||||
const [selectedVucem, setSelectedVucem] = useState(null);
|
||||
const [vucemList, setVucemList] = useState([]);
|
||||
@@ -216,10 +219,13 @@ export default function Vucem() {
|
||||
const [editVucem, setEditVucem] = useState(null);
|
||||
const [showDeleteModal, setShowDeleteModal] = useState(false);
|
||||
const [deleteVucem, setDeleteVucem] = useState(null);
|
||||
|
||||
const [organizaciones, setOrganizaciones] = useState([]);
|
||||
const { user: currentUser } = useUser();
|
||||
|
||||
// Estado para formulario de creación/edición
|
||||
const initialForm = {
|
||||
usuario: '',
|
||||
organizacion: '',
|
||||
password: '',
|
||||
patente: '',
|
||||
efirma: '',
|
||||
@@ -260,6 +266,22 @@ export default function Vucem() {
|
||||
}));
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
const fetchOrganizaciones = async () => {
|
||||
try {
|
||||
const url = `${import.meta.env.VITE_EFC_API_URL}/organization/organizaciones/`;
|
||||
const res = await fetchWithAuth(url); // ← USA fetchWithAuth
|
||||
if (!res.ok) throw new Error('Error al obtener las organizaciones');
|
||||
const data = await res.json();
|
||||
setOrganizaciones(data);
|
||||
} catch (err) {
|
||||
console.error('Error fetching organizaciones:', err);
|
||||
setOrganizaciones([]); // ← Asegurar que siempre sea un array
|
||||
}
|
||||
};
|
||||
fetchOrganizaciones();
|
||||
}, []);
|
||||
|
||||
// Funciones para alternar visibilidad en modal de edición
|
||||
const toggleEditPasswordVisibility = () => {
|
||||
setShowEditPassword(!showEditPassword);
|
||||
@@ -358,6 +380,7 @@ export default function Vucem() {
|
||||
const res = await fetchWithAuth(`${API_URL}/vucem/vucem/`);
|
||||
if (!res.ok) throw new Error('Error al cargar Ventanilla Unica');
|
||||
const data = await res.json();
|
||||
// console.log('data > ', data);
|
||||
setVucemList(data);
|
||||
setError(null);
|
||||
} catch (err) {
|
||||
@@ -1272,12 +1295,13 @@ export default function Vucem() {
|
||||
formData.append('password', form.password);
|
||||
formData.append('patente', form.patente);
|
||||
formData.append('efirma', form.efirma);
|
||||
if (form.key) formData.append('key', form.key);
|
||||
if (form.cer) formData.append('cer', form.cer);
|
||||
formData.append('is_importador', form.is_importador);
|
||||
formData.append('is_active', form.is_active);
|
||||
formData.append('acusecove', form.acusecove);
|
||||
formData.append('acuseedocument', form.acuseedocument);
|
||||
formData.append('is_active', form.is_active);
|
||||
formData.append('organizacion_id', form.organizacion);
|
||||
if (form.key) formData.append('key', form.key);
|
||||
if (form.cer) formData.append('cer', form.cer);
|
||||
try {
|
||||
const res = await postFormDataWithAuth(`${API_URL}/vucem/vucem/`, formData);
|
||||
if (!res.ok) throw new Error('Error al crear');
|
||||
@@ -1553,6 +1577,54 @@ export default function Vucem() {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Seccion de organizacion para super_users */}
|
||||
{currentUser.is_superuser ? (
|
||||
<div className="bg-slate-50 rounded-lg p-4 border border-slate-200">
|
||||
<div className="flex items-center mb-3 pb-2 border-b border-slate-300">
|
||||
<div className="bg-amber-600 rounded-lg p-2 mr-3 shadow-sm">
|
||||
<svg className="w-4 h-4 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h4 className="text-sm font-semibold text-slate-800">Configuracion de Organizaciones</h4>
|
||||
<p className="text-xs text-slate-600">Asignar la Organizacion a la que pertenece.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="grid grid-cols-1 lg:grid-cols-1 gap-4">
|
||||
<div className="space-y-1">
|
||||
<label className="block text-xs font-semibold text-slate-700">
|
||||
Seleccionar Organizacion <span className="text-red-600">*</span>
|
||||
</label>
|
||||
<div className="relative rounded-lg shadow-sm">
|
||||
<select
|
||||
name="organizacion"
|
||||
value={form.organizacion || ''}
|
||||
onChange={handleInputChange}
|
||||
className="block w-full rounded-lg border-gray-300 pl-3 pr-10 py-2.5 text-gray-900 placeholder-gray-500
|
||||
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 sm:text-sm
|
||||
transition-all duration-200 bg-white appearance-none"
|
||||
>
|
||||
<option value="">Todas las organizaciones</option>
|
||||
{organizaciones.results && organizaciones.results.map(org => (
|
||||
<option key={org.id} value={org.id}>
|
||||
{org.nombre}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
<div className="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
|
||||
<svg className="h-5 w-5 text-gray-400 group-focus-within:text-blue-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
) : (
|
||||
<div className="bg-slate-50 rounded-lg p-4 border border-slate-200"></div>
|
||||
)}
|
||||
{/* Botones de acción */}
|
||||
<div className="flex flex-col sm:flex-row justify-end space-y-2 sm:space-y-0 sm:space-x-3 pt-4 border-t border-slate-200">
|
||||
<button
|
||||
|
||||
Reference in New Issue
Block a user