This commit is contained in:
AlexLara
2025-03-26 13:19:42 -06:00
8 changed files with 70 additions and 3 deletions

8
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

13
.idea/dataSources.xml generated Normal file
View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DataSourceManagerImpl" format="xml" multifile-model="true">
<data-source source="LOCAL" name="PAAD" uuid="6c7f5823-4af4-46bd-a3f0-e94075f5c163">
<driver-ref>postgresql</driver-ref>
<synchronize>true</synchronize>
<remarks>Base de datos del PAAD</remarks>
<jdbc-driver>org.postgresql.Driver</jdbc-driver>
<jdbc-url>jdbc:postgresql://paad.lci.ulsa.mx:5432/paad</jdbc-url>
<working-dir>$ProjectFileDir$</working-dir>
</data-source>
</component>
</project>

8
.idea/modules.xml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/paad.iml" filepath="$PROJECT_DIR$/.idea/paad.iml" />
</modules>
</component>
</project>

8
.idea/paad.iml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

22
.idea/php.xml generated Normal file
View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="MessDetectorOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PHPCSFixerOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PHPCodeSnifferOptionsConfiguration">
<option name="highlightLevel" value="WARNING" />
<option name="transferred" value="true" />
</component>
<component name="PhpProjectSharedConfiguration" php_language_level="8.1">
<option name="suggestChangeDefaultLanguageLevel" value="false" />
</component>
<component name="PhpStanOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PsalmOptionsConfiguration">
<option name="transferred" value="true" />
</component>
</project>

6
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

View File

@@ -1,4 +1,4 @@
<? <?php
#input $_GET['id_espacio_sgu'] #input $_GET['id_espacio_sgu']
#output rutas: [ ...ruta, salones: [{...salon}] ] #output rutas: [ ...ruta, salones: [{...salon}] ]
header('Content-Type: application/json charset=utf-8'); header('Content-Type: application/json charset=utf-8');
@@ -115,6 +115,7 @@ try {
LEFT JOIN usuario ON usuario.usuario_id = REGISTRO.supervisor_id LEFT JOIN usuario ON usuario.usuario_id = REGISTRO.supervisor_id
JOIN estado_supervisor ON estado_supervisor.estado_supervisor_id = COALESCE(REGISTRO.estado_supervisor_id, 0) JOIN estado_supervisor ON estado_supervisor.estado_supervisor_id = COALESCE(REGISTRO.estado_supervisor_id, 0)
WHERE horario.horario_id IN ($HorariosID) WHERE horario.horario_id IN ($HorariosID)
AND (FECHAS.fecha + horario.horario_hora) < LEAST(horario.horario_fecha_fin, NOW())
ORDER BY fechas.fecha, horario_hora, REGISTRO.estado_supervisor_id", ORDER BY fechas.fecha, horario_hora, REGISTRO.estado_supervisor_id",
$fechas $fechas
); );

View File

@@ -1,9 +1,10 @@
{ {
"require": { "require": {
"vlucas/phpdotenv": "^5.5", "vlucas/phpdotenv": "^5.5",
"phpoffice/phpspreadsheet": "^1.25", "phpoffice/phpspreadsheet": "3.9.0.0",
"seinopsys/postgresql-database-class": "^3.1", "seinopsys/postgresql-database-class": "^3.1",
"justinrainbow/json-schema": "^5.2", "justinrainbow/json-schema": "^5.2",
"econea/nusoap": "^0.9.15" "econea/nusoap": "^0.9.15",
"ext-pdo": "*"
} }
} }