Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6fcd5592e4 |
@@ -1,85 +0,0 @@
|
||||
name: Despliegue Automatizado Universal
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- develop
|
||||
- master
|
||||
|
||||
jobs:
|
||||
get-context:
|
||||
runs-on: host
|
||||
outputs:
|
||||
node_version: ${{ steps.setup.outputs.version }}
|
||||
target_app: ${{ steps.setup.outputs.app }}
|
||||
steps:
|
||||
- name: Resolver Aplicación desde apps.conf
|
||||
id: setup
|
||||
run: |
|
||||
# 1. Obtener el nombre del repositorio actual en Gitea (ej: front-Censo)
|
||||
REPO_NAME="${{ github.event.repository.name }}"
|
||||
|
||||
# 2. Determinar si buscamos un entorno -dev (develop) o producción (master)
|
||||
if [ "${{ github.ref_name }}" = "develop" ]; then
|
||||
SUFFIX="-dev"
|
||||
else
|
||||
SUFFIX=""
|
||||
fi
|
||||
|
||||
echo "Buscando qué sección de apps.conf tiene REPO=$REPO_NAME y termina en '$SUFFIX'..."
|
||||
|
||||
# 3. Buscar en /etc/apps.conf el bloque que contenga REPO=nombre_del_repo
|
||||
TARGET_APP=$(awk -v repo="REPO=$REPO_NAME" -v suf="$SUFFIX" '
|
||||
/^\[/ { gsub(/[\[\]]/, "", $0); current_box=$0; next }
|
||||
$0 == repo {
|
||||
if ((suf == "-dev" && current_box ~ /-dev$/) || (suf == "" && current_box !~ /-dev$/)) {
|
||||
print current_box;
|
||||
exit
|
||||
}
|
||||
}
|
||||
' /etc/apps.conf)
|
||||
|
||||
if [ -z "$TARGET_APP" ]; then
|
||||
echo "ERROR: No se encontró ninguna sección en /etc/apps.conf para el repositorio $REPO_NAME con el sufijo correcto."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# 4. Leer la versión de Node del bloque encontrado
|
||||
VERSION=$(awk -v app="$TARGET_APP" '
|
||||
$0=="["app"]" { found=1; next }
|
||||
/^\[/ && found { exit }
|
||||
found && /^NODE=/ { split($0, a, "="); print a[2]; exit }
|
||||
' /etc/apps.conf)
|
||||
|
||||
MAJOR_VERSION=$(echo "$VERSION" | tr -d '[:space:]' | grep -oE '[0-9]+' | head -n1)
|
||||
|
||||
echo "-> ID de Aplicación encontrado: $TARGET_APP"
|
||||
echo "-> Versión Mayor de Node resuelta: $MAJOR_VERSION"
|
||||
|
||||
echo "app=${TARGET_APP}" >> $GITHUB_OUTPUT
|
||||
echo "version=${MAJOR_VERSION}" >> $GITHUB_OUTPUT
|
||||
|
||||
build:
|
||||
needs: get-context
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Configurar Node.js dinámicamente
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ needs.get-context.outputs.node_version }}
|
||||
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
|
||||
deploy:
|
||||
needs: [get-context, build]
|
||||
runs-on: host
|
||||
steps:
|
||||
- name: Ejecutar Despliegue en Servidor Físico
|
||||
run: |
|
||||
TARGET_APP="${{ needs.get-context.outputs.target_app }}"
|
||||
BRANCH_NAME="${{ github.ref_name }}"
|
||||
|
||||
sudo -u deploy /home/deploy/scripts/deploy-front.sh "$TARGET_APP" "$BRANCH_NAME"
|
||||
Generated
+24
-27
@@ -12,7 +12,6 @@
|
||||
"@zxing/browser": "^0.1.5",
|
||||
"@zxing/library": "^0.21.3",
|
||||
"axios": "^1.13.2",
|
||||
"chart.js": "^4.5.1",
|
||||
"js-cookie": "^3.0.5",
|
||||
"jwt-decode": "^4.0.0",
|
||||
"leaflet": "^1.9.4",
|
||||
@@ -1179,12 +1178,6 @@
|
||||
"@jridgewell/sourcemap-codec": "^1.4.14"
|
||||
}
|
||||
},
|
||||
"node_modules/@kurkle/color": {
|
||||
"version": "0.3.4",
|
||||
"resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.4.tgz",
|
||||
"integrity": "sha512-M5UknZPHRu3DEDWoipU6sE8PdkZ6Z/S+v4dD+Ke8IaNlpdSQah50lz1KtcFBa2vsdOnwbbnxJwVM4wty6udA5w==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@napi-rs/wasm-runtime": {
|
||||
"version": "0.2.12",
|
||||
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz",
|
||||
@@ -1394,6 +1387,7 @@
|
||||
"version": "2.5.1",
|
||||
"resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz",
|
||||
"integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==",
|
||||
"dev": true,
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
@@ -1433,6 +1427,7 @@
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1453,6 +1448,7 @@
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1473,6 +1469,7 @@
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1493,6 +1490,7 @@
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1513,6 +1511,7 @@
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1533,6 +1532,7 @@
|
||||
"cpu": [
|
||||
"arm"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1553,6 +1553,7 @@
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1573,6 +1574,7 @@
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1593,6 +1595,7 @@
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1613,6 +1616,7 @@
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1633,6 +1637,7 @@
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1653,6 +1658,7 @@
|
||||
"cpu": [
|
||||
"ia32"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -1673,6 +1679,7 @@
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -2886,7 +2893,7 @@
|
||||
"version": "3.0.3",
|
||||
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
||||
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
||||
"devOptional": true,
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"fill-range": "^7.1.1"
|
||||
@@ -3024,18 +3031,6 @@
|
||||
"url": "https://github.com/chalk/chalk?sponsor=1"
|
||||
}
|
||||
},
|
||||
"node_modules/chart.js": {
|
||||
"version": "4.5.1",
|
||||
"resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.5.1.tgz",
|
||||
"integrity": "sha512-GIjfiT9dbmHRiYi6Nl2yFCq7kkwdkp1W/lp2J99rX0yo9tgJGn3lKQATztIjb5tVtevcBtIdICNWqlq5+E8/Pw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@kurkle/color": "^0.3.0"
|
||||
},
|
||||
"engines": {
|
||||
"pnpm": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/chokidar": {
|
||||
"version": "4.0.3",
|
||||
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
|
||||
@@ -3411,6 +3406,7 @@
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
|
||||
"integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"optional": true,
|
||||
"bin": {
|
||||
@@ -4193,7 +4189,7 @@
|
||||
"version": "7.1.1",
|
||||
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
||||
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
||||
"devOptional": true,
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"to-regex-range": "^5.0.1"
|
||||
@@ -4878,7 +4874,7 @@
|
||||
"version": "2.1.1",
|
||||
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
||||
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
||||
"devOptional": true,
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
@@ -4924,7 +4920,7 @@
|
||||
"version": "4.0.3",
|
||||
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
||||
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
||||
"devOptional": true,
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"is-extglob": "^2.1.1"
|
||||
@@ -4963,7 +4959,7 @@
|
||||
"version": "7.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
||||
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
||||
"devOptional": true,
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=0.12.0"
|
||||
@@ -5403,7 +5399,7 @@
|
||||
"version": "4.0.8",
|
||||
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
||||
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
||||
"devOptional": true,
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"braces": "^3.0.3",
|
||||
@@ -5561,6 +5557,7 @@
|
||||
"version": "7.1.1",
|
||||
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
|
||||
"integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true
|
||||
},
|
||||
@@ -5836,7 +5833,7 @@
|
||||
"version": "2.3.1",
|
||||
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
||||
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
||||
"devOptional": true,
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=8.6"
|
||||
@@ -6837,7 +6834,7 @@
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
||||
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
||||
"devOptional": true,
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"is-number": "^7.0.0"
|
||||
|
||||
@@ -13,7 +13,6 @@
|
||||
"@zxing/browser": "^0.1.5",
|
||||
"@zxing/library": "^0.21.3",
|
||||
"axios": "^1.13.2",
|
||||
"chart.js": "^4.5.1",
|
||||
"js-cookie": "^3.0.5",
|
||||
"jwt-decode": "^4.0.0",
|
||||
"leaflet": "^1.9.4",
|
||||
|
||||
@@ -1,17 +1,62 @@
|
||||
"use client";
|
||||
|
||||
import Reporte from "@/components/reporteGraficas/reporte";
|
||||
|
||||
import ReportePerifericos from "@/components/reporte_graficas_perifericos/reporte";
|
||||
import "../../styles/layout/reporte.scss";
|
||||
import { useState } from "react";
|
||||
|
||||
|
||||
type PreguntaKey = "reporteGraficas" | "reporte_graficas_perifericos";
|
||||
|
||||
const LABELS: Record<PreguntaKey, string> = {
|
||||
reporteGraficas: "Reporte por equipos",
|
||||
reporte_graficas_perifericos: "Reporte por perifericos",
|
||||
};
|
||||
|
||||
export default function Page() {
|
||||
const [activeTab, setActiveTab] = useState<PreguntaKey>("reporteGraficas");
|
||||
|
||||
const renderPregunta = () => {
|
||||
switch (activeTab) {
|
||||
case "reporteGraficas":
|
||||
return (
|
||||
<>
|
||||
<Reporte />
|
||||
</>
|
||||
);
|
||||
case "reporte_graficas_perifericos":
|
||||
return (
|
||||
<>
|
||||
<ReportePerifericos />
|
||||
</>
|
||||
);
|
||||
default:
|
||||
return (
|
||||
<div className="p-6 text-center text-gray-500">
|
||||
Contenido no disponible aún.
|
||||
</div>
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="scanView_reporte">
|
||||
<div className="container_reporte">
|
||||
<div className="main-content_reporte">
|
||||
<div className={`data-table_reporte`}><Reporte /></div>
|
||||
<div className="tabs_reporte">
|
||||
{Object.entries(LABELS).map(([key, label]) => (
|
||||
<button
|
||||
key={key}
|
||||
className={`tab_reporte ${activeTab === key ? "active" : ""}`}
|
||||
onClick={() => setActiveTab(key as PreguntaKey)}
|
||||
aria-selected={activeTab === key}
|
||||
role="tab"
|
||||
>
|
||||
{label}
|
||||
</button>
|
||||
))}
|
||||
</div>
|
||||
<div className={`data-table_reporte`}>{renderPregunta()}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
"use client";
|
||||
|
||||
|
||||
import "../../styles/layout/reporte.scss";
|
||||
import ReportePerifericos from "@/components/reporte_graficas_perifericos/reporte";
|
||||
|
||||
export default function Page() {
|
||||
|
||||
|
||||
return (
|
||||
<div className="scanView_reporte">
|
||||
<div className="container_reporte">
|
||||
<div className="main-content_reporte">
|
||||
<div className={`data-table_reporte`}><ReportePerifericos /></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -24,9 +24,7 @@ export default function RootLayout({
|
||||
<body>
|
||||
<Header />
|
||||
<Toaster position="top-left" reverseOrder={false} />
|
||||
<main>
|
||||
{children}
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
@@ -28,33 +28,6 @@ body {
|
||||
color: $color-text;
|
||||
}
|
||||
|
||||
main {
|
||||
position: relative;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
main::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
|
||||
width: 200%;
|
||||
height: 200%;
|
||||
|
||||
background-image:
|
||||
linear-gradient(#003f7906 1px, transparent 1px),
|
||||
linear-gradient(90deg, #003f7906 1px, transparent 1px);
|
||||
|
||||
background-size: 48px 48px;
|
||||
pointer-events: none;
|
||||
|
||||
transform: translate(-50%, -50%) rotate(15deg);
|
||||
transform-origin: center;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 2rem;
|
||||
line-height: 1.5;
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 2rem;
|
||||
color: #222;
|
||||
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
max-width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
width: 100vw;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.header {
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
width: 100vw;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.login-container {
|
||||
|
||||
@@ -10,31 +10,33 @@ interface Props {
|
||||
count?: boolean;
|
||||
}
|
||||
|
||||
export default function DownloadTable({ filtros, count }: Props) {
|
||||
export default function DownloadTable({ filtros,count }: Props) {
|
||||
const [loading, setLoading] = useState(false);
|
||||
|
||||
const handleDownload = async () => {
|
||||
if (!filtros) { return }
|
||||
if(!filtros.length){return}
|
||||
setLoading(true);
|
||||
|
||||
try {
|
||||
const token = Cookies.get("token");
|
||||
const headers = { Authorization: `Bearer ${token}` };
|
||||
const token = Cookies.get("token");
|
||||
|
||||
try {
|
||||
const endpoint = count
|
||||
? "/equipos/excel/tabla/count"
|
||||
: "/equipos/excel/tabla";
|
||||
? "/equipos/excel/tabla/count"
|
||||
: "/equipos/excel/tabla";
|
||||
|
||||
|
||||
const response = await axios.post(
|
||||
`${process.env.NEXT_PUBLIC_API_URL}${endpoint}`,
|
||||
filtros,
|
||||
{
|
||||
headers,
|
||||
headers: {
|
||||
Authorization: `Bearer ${token}`,
|
||||
},
|
||||
responseType: "blob",
|
||||
}
|
||||
);
|
||||
const url = window.URL.createObjectURL(new Blob([response.data]));
|
||||
console.log(url)
|
||||
|
||||
const a = document.createElement("a");
|
||||
a.href = url;
|
||||
a.download = "reporte.xlsx";
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
"use client";
|
||||
|
||||
import styles from "./style.module.css";
|
||||
import Cookies from "js-cookie";
|
||||
import { useState } from "react";
|
||||
|
||||
export default function DownloadTableCount() {
|
||||
const [loading, setLoading] = useState(false);
|
||||
|
||||
const handleDownload = async () => {
|
||||
setLoading(true);
|
||||
const token = Cookies.get("token");
|
||||
const headers = { Authorization: `Bearer ${token}` };
|
||||
|
||||
try {
|
||||
const response = await fetch(
|
||||
`${process.env.NEXT_PUBLIC_API_URL}/equipos/excel/tabla/count`,
|
||||
{ headers }
|
||||
);
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error("Error al descargar el archivo");
|
||||
}
|
||||
|
||||
const blob = await response.blob();
|
||||
const url = window.URL.createObjectURL(blob);
|
||||
|
||||
const a = document.createElement("a");
|
||||
a.href = url;
|
||||
a.download = "reporte.xlsx";
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
a.remove();
|
||||
|
||||
window.URL.revokeObjectURL(url);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
alert("Hubo un problema al descargar el archivo.");
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<button
|
||||
className={styles.downloadBtn}
|
||||
onClick={handleDownload}
|
||||
disabled={loading}
|
||||
>
|
||||
{loading ? (
|
||||
<div className={styles.loader}></div>
|
||||
) : (
|
||||
<img src="/excel.svg" alt="Excel" className={styles.iconExcel} width={30} height={30}/>
|
||||
)}
|
||||
</button>
|
||||
);
|
||||
}
|
||||
@@ -95,7 +95,7 @@ function HeatLayer() {
|
||||
|
||||
Object.entries(edificios).forEach(([nombre, coords]: any) => {
|
||||
L.polygon((coords), {
|
||||
color: "#77ee9f00",
|
||||
color: "#77ee9f",
|
||||
weight: 2,
|
||||
fillOpacity: 0.25
|
||||
})
|
||||
@@ -129,7 +129,7 @@ export default function MapaCalor() {
|
||||
<div style={{
|
||||
width: "100%",
|
||||
height: "650px",
|
||||
marginTop: "10px",
|
||||
marginTop: "40px",
|
||||
borderRadius: "12px",
|
||||
overflow: "hidden",
|
||||
boxShadow: "0 6px 25px rgba(0,0,0,0.3)"
|
||||
|
||||
@@ -25,11 +25,12 @@ const CATEGORIA_MAP: Record<string, { tabla: number }> = {
|
||||
"ESCRITORIO PC": { tabla: 0 },
|
||||
"ESCRITORIO MAC OS": { tabla: 0 },
|
||||
"ESCRITORIO MAC OS ": { tabla: 0 },
|
||||
|
||||
"ESCRITORIO LINUX": { tabla: 0 },
|
||||
|
||||
"PORTÁTILES WINDOWS": { tabla: 2 },
|
||||
"PORTÁTILES CHROMEBOOK": { tabla: 2 },
|
||||
"PORTÁTILES MAC OS": { tabla: 2 },
|
||||
"PORTÁTILES LINUX": { tabla: 2 },
|
||||
|
||||
"TABLETA IPAD OS": { tabla: 1 },
|
||||
"TABLETA ANDROID": { tabla: 1 },
|
||||
@@ -47,7 +48,7 @@ const TITULOS_TABLAS = [
|
||||
const SISTEMAS_POR_TABLA: Record<number, readonly string[]> = {
|
||||
0: ["Windows", "Linux", "Mac OS"],
|
||||
1: ["Android", "iPad OS"],
|
||||
2: ["Windows", "Chrome OS", "Mac OS"],
|
||||
2: ["Windows", "Linux", "Mac OS"],
|
||||
3: ["Servidor"],
|
||||
};
|
||||
|
||||
@@ -57,9 +58,7 @@ function normalizarSO(soRaw: string): string {
|
||||
if (so.includes("WINDOWS")) return "Windows";
|
||||
if (so.includes("LINUX")) return "Linux";
|
||||
if (so.includes("MAC")) return "Mac OS";
|
||||
if (so.includes("CHROME OS")) return "Chrome OS";
|
||||
if (so.includes("ANDROID")) return "Android";
|
||||
|
||||
if (so.includes("CHROME")) return "Chrome OS";
|
||||
if (so.includes("IOS") || so.includes("IPAD")) return "iPad OS";
|
||||
|
||||
if (so.includes("SERVER") || so.includes("UNIX")) return "Servidor";
|
||||
@@ -176,8 +175,9 @@ export default function Pregunta1() {
|
||||
{valores.map((valor, colIndex) => (
|
||||
<td key={colIndex}>
|
||||
<div
|
||||
className={`${style["input-contenedor"]} ${loading ? "skeleton" : ""
|
||||
}`}
|
||||
className={`${style["input-contenedor"]} ${
|
||||
loading ? "skeleton" : ""
|
||||
}`}
|
||||
>
|
||||
{!loading ? (
|
||||
<input type="number" value={valor} readOnly />
|
||||
@@ -201,8 +201,9 @@ export default function Pregunta1() {
|
||||
{totalesColumnas.map((t, i) => (
|
||||
<td key={i}>
|
||||
<div
|
||||
className={`${style["input-contenedor"]} ${loading ? "skeleton" : ""
|
||||
}`}
|
||||
className={`${style["input-contenedor"]} ${
|
||||
loading ? "skeleton" : ""
|
||||
}`}
|
||||
>
|
||||
{!loading && t}
|
||||
</div>
|
||||
|
||||
@@ -42,7 +42,7 @@ export default function Ranking() {
|
||||
}, [year, api_url]);
|
||||
|
||||
return (
|
||||
<section style={{width:'100%'}}>
|
||||
<section>
|
||||
<div className="year-selector">
|
||||
<div>
|
||||
<label>Año:</label>
|
||||
|
||||
@@ -111,7 +111,7 @@ export default function Antiguedad({ filtros }: Props) {
|
||||
<Tooltip
|
||||
formatter={(value) => [`${value}`]}
|
||||
/>
|
||||
<Legend wrapperStyle={{ fontSize: 12 }}/>
|
||||
<Legend />
|
||||
{tieneAdscripciones ? (
|
||||
|
||||
adscripciones.map((ads, i) => (
|
||||
|
||||
@@ -1,95 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect, useRef } from "react";
|
||||
import { Chart } from "chart.js/auto";
|
||||
import axios from "axios";
|
||||
import Cookies from "js-cookie";
|
||||
|
||||
interface Props {
|
||||
tipo: "ALUMNO" | "PROFESOR" | "ADMINISTRATIVO";
|
||||
filtros: any
|
||||
}
|
||||
|
||||
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||
|
||||
export default function Polar({ tipo, filtros }: Props) {
|
||||
const canvasRef = useRef<HTMLCanvasElement | null>(null);
|
||||
const chartRef = useRef<Chart | null>(null);
|
||||
|
||||
useEffect(() => {
|
||||
if (!canvasRef.current) return;
|
||||
|
||||
const fetchData = async () => {
|
||||
const token = Cookies.get("token");
|
||||
const headers = { Authorization: `Bearer ${token}` };
|
||||
|
||||
try {
|
||||
const res = await axios.post(
|
||||
`${api_url}/equipos/graficaPolar/${tipo}`, filtros, { headers }
|
||||
);
|
||||
|
||||
const apiData = res.data;
|
||||
|
||||
// Orden fijo
|
||||
const labels = [
|
||||
"Menor a 2 años",
|
||||
"Entre 2 y 3 años",
|
||||
"Entre 4 y 5 años",
|
||||
"Mayor a 6 años",
|
||||
];
|
||||
|
||||
// Mapear datos
|
||||
const data = labels.map((label) => {
|
||||
const found = apiData.find(
|
||||
(item: any) => item.antiguedad === label
|
||||
);
|
||||
return found ? Number(found.total) : 0;
|
||||
});
|
||||
|
||||
// Destruir gráfica previa (importante en React)
|
||||
if (chartRef.current) {
|
||||
chartRef.current.destroy();
|
||||
}
|
||||
|
||||
// Crear gráfica
|
||||
chartRef.current = new Chart(canvasRef.current!, {
|
||||
type: "polarArea",
|
||||
data: {
|
||||
labels,
|
||||
datasets: [
|
||||
{
|
||||
data,
|
||||
borderWidth: 1,
|
||||
backgroundColor: [
|
||||
"rgb(75, 192, 192)",
|
||||
"rgb(255, 206, 86)",
|
||||
"rgb(235, 157, 54)",
|
||||
"rgb(255, 99, 132)",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
});
|
||||
} catch (error) {
|
||||
console.error("Error al obtener datos:", error);
|
||||
}
|
||||
};
|
||||
|
||||
fetchData();
|
||||
|
||||
return () => {
|
||||
if (chartRef.current) {
|
||||
chartRef.current.destroy();
|
||||
}
|
||||
};
|
||||
}, [filtros]);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{tipo === 'PROFESOR' ?<h4>PROFESOR Y TECNICO</h4>:
|
||||
<h4>{tipo}</h4>
|
||||
}
|
||||
<canvas ref={canvasRef} height={200} width={350}></canvas>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -3,7 +3,6 @@
|
||||
import axios from "axios";
|
||||
import { useEffect, useState } from "react";
|
||||
import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts";
|
||||
import Cookies from "js-cookie";
|
||||
|
||||
interface Props {
|
||||
filtros: any
|
||||
@@ -30,12 +29,8 @@ export default function Procesador({ filtros }: Props) {
|
||||
const [data, setData] = useState<procesador[]>([])
|
||||
|
||||
useEffect(() => {
|
||||
const token = Cookies.get("token");
|
||||
const headers = { Authorization: `Bearer ${token}` };
|
||||
|
||||
const getAntiguedad = async () => {
|
||||
const response = await axios.post(`${api_url}/equipos/grafica/procesador`, filtros, { headers }
|
||||
)
|
||||
const response = await axios.post(`${api_url}/equipos/grafica/procesador`, filtros)
|
||||
|
||||
setData(response.data)
|
||||
}
|
||||
@@ -84,7 +79,7 @@ export default function Procesador({ filtros }: Props) {
|
||||
<Tooltip
|
||||
formatter={(value) => [`${value}`]}
|
||||
/>
|
||||
<Legend wrapperStyle={{ fontSize: 12 }}/>
|
||||
<Legend />
|
||||
{tieneAdscripciones ? (
|
||||
|
||||
adscripciones.map((ads, i) => (
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
import axios from "axios";
|
||||
import { useEffect, useState } from "react";
|
||||
import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts";
|
||||
import Cookies from "js-cookie";
|
||||
|
||||
interface Props {
|
||||
filtros: any
|
||||
@@ -30,11 +29,8 @@ export default function SistemaOperativo({ filtros }: Props) {
|
||||
const [data, setData] = useState<so[]>([])
|
||||
|
||||
useEffect(() => {
|
||||
const token = Cookies.get("token");
|
||||
const headers = { Authorization: `Bearer ${token}` };
|
||||
const getAntiguedad = async () => {
|
||||
const response = await axios.post(`${api_url}/equipos/grafica/so`, filtros, { headers }
|
||||
)
|
||||
const response = await axios.post(`${api_url}/equipos/grafica/so`, filtros)
|
||||
|
||||
setData(response.data)
|
||||
}
|
||||
@@ -82,7 +78,7 @@ export default function SistemaOperativo({ filtros }: Props) {
|
||||
<Tooltip
|
||||
formatter={(value) => [`${value}`]}
|
||||
/>
|
||||
<Legend wrapperStyle={{ fontSize: 12 }}/>
|
||||
<Legend />
|
||||
{tieneAdscripciones ? (
|
||||
|
||||
adscripciones.map((ads, i) => (
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
import axios from "axios";
|
||||
import { useEffect, useState } from "react";
|
||||
import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts";
|
||||
import Cookies from "js-cookie";
|
||||
|
||||
interface Props {
|
||||
filtros: any
|
||||
@@ -30,13 +29,9 @@ export default function Uso({ filtros }: Props) {
|
||||
const [data, setData] = useState<UsoData[]>([])
|
||||
|
||||
useEffect(() => {
|
||||
const token = Cookies.get("token");
|
||||
const headers = { Authorization: `Bearer ${token}` };
|
||||
|
||||
const getUso = async () => {
|
||||
const response = await axios.post(
|
||||
`${api_url}/equipos/grafica/uso`, filtros,
|
||||
{ headers }
|
||||
`${api_url}/equipos/grafica/uso`, filtros
|
||||
)
|
||||
setData(response.data)
|
||||
}
|
||||
@@ -85,7 +80,7 @@ export default function Uso({ filtros }: Props) {
|
||||
<Tooltip
|
||||
formatter={(value) => [`${value}`]}
|
||||
/>
|
||||
<Legend wrapperStyle={{ fontSize: 12 }}/>
|
||||
<Legend />
|
||||
{tieneAdscripciones ? (
|
||||
|
||||
adscripciones.map((ads, i) => (
|
||||
|
||||
@@ -4,7 +4,6 @@ import { useEffect, useState } from 'react'
|
||||
import styles from './TableAntiguedad.module.css'
|
||||
import axios from 'axios'
|
||||
import DownloadTable from '@/components/Dowload/tabla'
|
||||
import Cookies from "js-cookie";
|
||||
|
||||
interface Props {
|
||||
filtros: any
|
||||
@@ -18,17 +17,12 @@ export default function TableAntiguedad({ filtros, count }: Props) {
|
||||
const [data, setData] = useState<any[]>([])
|
||||
|
||||
useEffect(() => {
|
||||
if (!filtros) { return }
|
||||
|
||||
const getUso = async () => {
|
||||
const token = Cookies.get("token");
|
||||
const headers = { Authorization: `Bearer ${token}` };
|
||||
|
||||
const endpoint = count
|
||||
? `${api_url}/equipos/tabla/count`
|
||||
: `${api_url}/equipos/tabla`
|
||||
|
||||
const response = await axios.post(endpoint, filtros,{headers})
|
||||
const response = await axios.post(endpoint, filtros)
|
||||
setData(response.data)
|
||||
}
|
||||
|
||||
|
||||
@@ -12,7 +12,6 @@ import Uso from "./Graficas/Uso"
|
||||
|
||||
import Cookies from "js-cookie";
|
||||
import TableAntiguedad from "./Tablas/Antiguedad"
|
||||
import Polar from "./Graficas/Polar"
|
||||
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||
|
||||
type AdscripcionOption = {
|
||||
@@ -161,7 +160,6 @@ export default function Reporte() {
|
||||
<label className={styles.adscripcion}>Adscripción</label>
|
||||
|
||||
<Select
|
||||
instanceId="adscripcion"
|
||||
options={adscripciones}
|
||||
getOptionLabel={(o) => o.adscripcion}
|
||||
getOptionValue={(o) => o.id_adscripcion}
|
||||
@@ -199,7 +197,6 @@ export default function Reporte() {
|
||||
<label className={styles.adscripcion}>Procesador</label>
|
||||
|
||||
<Select
|
||||
instanceId="procesadores"
|
||||
options={procesadores}
|
||||
getOptionLabel={(o) => o.procesador}
|
||||
getOptionValue={(o) => o.id_procesador}
|
||||
@@ -240,7 +237,6 @@ export default function Reporte() {
|
||||
<label className={styles.adscripcion}>Sistema Operativo</label>
|
||||
|
||||
<Select
|
||||
instanceId="sistemasOperativos"
|
||||
options={sistemasOperativos}
|
||||
getOptionLabel={(o) => o.sistema_operativo}
|
||||
getOptionValue={(o) => o.id_sistema_operativo}
|
||||
@@ -282,7 +278,6 @@ export default function Reporte() {
|
||||
<label className={styles.adscripcion}>Uso</label>
|
||||
|
||||
<Select
|
||||
instanceId="usos"
|
||||
options={usos}
|
||||
getOptionLabel={(o) => o.tipo_uso}
|
||||
getOptionValue={(o) => o.id_uso}
|
||||
@@ -322,7 +317,6 @@ export default function Reporte() {
|
||||
<label className={styles.adscripcion}>Antiguedad</label>
|
||||
|
||||
<Select
|
||||
instanceId="antiguedad"
|
||||
options={antiguedad}
|
||||
getOptionLabel={(o) => o.antiguedad}
|
||||
getOptionValue={(o) => o.antiguedad}
|
||||
@@ -379,10 +373,6 @@ export default function Reporte() {
|
||||
filtros={filtros}
|
||||
/>
|
||||
|
||||
<Polar tipo="ALUMNO" filtros={filtros} />
|
||||
<Polar tipo="PROFESOR" filtros={filtros} />
|
||||
<Polar tipo="ADMINISTRATIVO" filtros={filtros} />
|
||||
|
||||
<Procesador
|
||||
filtros={filtros}
|
||||
/>
|
||||
|
||||
@@ -95,7 +95,7 @@ export default function Antiguedad({ filtros }: Props) {
|
||||
}}
|
||||
>
|
||||
|
||||
<h1 style={{ margin: "0" }}>Antigüedad por periferico</h1>
|
||||
<h1 style={{ margin: "0" }}>Antigüedad por equipo</h1>
|
||||
|
||||
<ResponsiveContainer width="100%" aspect={2.5}>
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ export default function Uso({ filtros }: Props) {
|
||||
|
||||
return (
|
||||
<div style={{ minWidth: "570px", background: "white", borderRadius: "10px", padding: "1rem" }}>
|
||||
<h1 style={{ margin: "0" }}>Uso por periferico</h1>
|
||||
<h1 style={{ margin: "0" }}>Uso por equipo</h1>
|
||||
<ResponsiveContainer width="100%" aspect={2.5} minHeight={220}>
|
||||
<BarChart data={dataTransformada}
|
||||
width={500}
|
||||
|
||||
@@ -6,12 +6,9 @@ import styles from "./Reporte.module.css"
|
||||
import axios from "axios"
|
||||
|
||||
import Antiguedad from "./Graficas/Antiguedad"
|
||||
import Procesador from "./Graficas/Procesador"
|
||||
import SistemaOperativo from "./Graficas/SistemaOperativo"
|
||||
import Uso from "./Graficas/Uso"
|
||||
|
||||
import Cookies from "js-cookie";
|
||||
import TableAntiguedad from "./Tablas/Antiguedad"
|
||||
const api_url = process.env.NEXT_PUBLIC_API_URL;
|
||||
|
||||
type AdscripcionOption = {
|
||||
@@ -24,16 +21,6 @@ type UsoOption = {
|
||||
tipo_uso: string
|
||||
}
|
||||
|
||||
type SoOption = {
|
||||
id_sistema_operativo: string
|
||||
sistema_operativo: string
|
||||
}
|
||||
|
||||
type ProcesadorOption = {
|
||||
id_procesador: string
|
||||
procesador: string
|
||||
}
|
||||
|
||||
type AntiguedadOption = {
|
||||
antiguedad: string
|
||||
}
|
||||
@@ -43,11 +30,6 @@ export default function ReportePerifericos() {
|
||||
const [adscripciones, setAdscripciones] = useState<AdscripcionOption[]>([])
|
||||
const [adscripcionesSeleccionadas, setAdscripcionesSeleccionadas] = useState<AdscripcionOption[]>([])
|
||||
|
||||
const [procesadores, setProcesadores] = useState<ProcesadorOption[]>([])
|
||||
const [procesadorSeleccionado, setProcesadorSeleccionado] = useState<ProcesadorOption[]>([])
|
||||
|
||||
const [sistemasOperativos, setSistemasOperativos] = useState<SoOption[]>([])
|
||||
const [soSeleccionado, setSoSeleccionado] = useState<SoOption[]>([])
|
||||
|
||||
const [usos, setUsos] = useState<UsoOption[]>([{ id_uso: "0", tipo_uso: "Todos" }])
|
||||
const [usoSeleccionado, setUsoSeleccionado] = useState<UsoOption[]>([])
|
||||
@@ -80,20 +62,10 @@ export default function ReportePerifericos() {
|
||||
...adscripcionRes.data
|
||||
])
|
||||
|
||||
setProcesadores([
|
||||
{ id_procesador: "0", procesador: "Todos" },
|
||||
...procesadorRes.data
|
||||
])
|
||||
|
||||
setUsos([
|
||||
{ id_uso: "0", tipo_uso: "Todos" },
|
||||
...usoRes.data
|
||||
])
|
||||
|
||||
setSistemasOperativos([
|
||||
{ id_sistema_operativo: "0", sistema_operativo: "Todos" },
|
||||
...soRes.data
|
||||
])
|
||||
}
|
||||
|
||||
cargarDatos()
|
||||
@@ -129,16 +101,12 @@ export default function ReportePerifericos() {
|
||||
|
||||
const filtrosTable = {
|
||||
adscripciones: adscripcionesSeleccionadas.map(a => String(a.id_adscripcion)),
|
||||
procesadores: procesadorSeleccionado.map(p => String(p.id_procesador)),
|
||||
sistemas: soSeleccionado.map(s => String(s.id_sistema_operativo)),
|
||||
usos: usoSeleccionado.map(u => String(u.id_uso)),
|
||||
antiguedad: antiguedadSeleccionada.map(u => String(u.antiguedad))
|
||||
}
|
||||
|
||||
const filtros = {
|
||||
adscripciones: limpiar(adscripcionesSeleccionadas.map(a => String(a.id_adscripcion))),
|
||||
procesadores: limpiar(procesadorSeleccionado.map(p => String(p.id_procesador))),
|
||||
sistemas: limpiar(soSeleccionado.map(s => String(s.id_sistema_operativo))),
|
||||
usos: limpiar(usoSeleccionado.map(u => String(u.id_uso))),
|
||||
antiguedad: limpiar(antiguedadSeleccionada.map(a => String(a.antiguedad)))
|
||||
}
|
||||
@@ -189,88 +157,6 @@ export default function ReportePerifericos() {
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{/* PROCESADOR */}
|
||||
|
||||
<div className={styles.containerSelection}>
|
||||
|
||||
<label className={styles.adscripcion}>Procesador</label>
|
||||
|
||||
<Select
|
||||
options={procesadores}
|
||||
getOptionLabel={(o) => o.procesador}
|
||||
getOptionValue={(o) => o.id_procesador}
|
||||
onChange={(o) =>
|
||||
agregar(o, procesadorSeleccionado, setProcesadorSeleccionado, "id_procesador")
|
||||
}
|
||||
/>
|
||||
|
||||
<div className={styles.lista}>
|
||||
|
||||
{procesadorSeleccionado.map((p) => (
|
||||
|
||||
<div key={p.id_procesador} className={styles.chip}>
|
||||
|
||||
<span>{p.procesador}</span>
|
||||
|
||||
<button
|
||||
className={styles.remove}
|
||||
onClick={() =>
|
||||
eliminar(p.id_procesador, procesadorSeleccionado, setProcesadorSeleccionado, "id_procesador")
|
||||
}
|
||||
>
|
||||
✕
|
||||
</button>
|
||||
|
||||
</div>
|
||||
|
||||
))}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{/* SISTEMA OPERATIVO */}
|
||||
|
||||
<div className={styles.containerSelection}>
|
||||
|
||||
<label className={styles.adscripcion}>Sistema Operativo</label>
|
||||
|
||||
<Select
|
||||
options={sistemasOperativos}
|
||||
getOptionLabel={(o) => o.sistema_operativo}
|
||||
getOptionValue={(o) => o.id_sistema_operativo}
|
||||
onChange={(o) =>
|
||||
agregar(o, soSeleccionado, setSoSeleccionado, "id_sistema_operativo")
|
||||
}
|
||||
/>
|
||||
|
||||
<div className={styles.lista}>
|
||||
|
||||
{soSeleccionado.map((s) => (
|
||||
|
||||
<div key={s.id_sistema_operativo} className={styles.chip}>
|
||||
|
||||
<span>{s.sistema_operativo}</span>
|
||||
|
||||
<button
|
||||
className={styles.remove}
|
||||
onClick={() =>
|
||||
eliminar(s.id_sistema_operativo, soSeleccionado, setSoSeleccionado, "id_sistema_operativo")
|
||||
}
|
||||
>
|
||||
✕
|
||||
</button>
|
||||
|
||||
</div>
|
||||
|
||||
))}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{/* USO */}
|
||||
|
||||
<div className={styles.containerSelection}>
|
||||
@@ -373,16 +259,6 @@ export default function ReportePerifericos() {
|
||||
filtros={filtros}
|
||||
/>
|
||||
|
||||
{/* <Procesador
|
||||
filtros={filtros}
|
||||
/>
|
||||
|
||||
<SistemaOperativo
|
||||
filtros={filtros}
|
||||
/> */}
|
||||
|
||||
{/* <TableAntiguedad filtros={filtros} count={true} />
|
||||
<TableAntiguedad filtros={filtrosTable} count={false} /> */}
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user