Skip to content

Commit 72d65b8

Browse files
authored
Merge pull request #3061 from ronnyjohnti/hotfix/skip-valuers-evaluation-list
fix: Corrige a query definindo ordenação das avaliações mais específica
2 parents aa5371f + bd9b0c7 commit 72d65b8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Todas as mudanças notáveis no projeto serão documentadas neste arquivo.
44
O formato é baseado no [Keep a Changelog](https://keepachangelog.com/pt-BR/1.0.0/)
55
e este projeto adere ao [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [5.8.15] - 2024-02-16
8+
### Coreções
9+
- Corrige a aba de avaliações da oportunidade onde poderiam algumas avaliações não serem exibidas e outras duplicadas.
10+
711
## [5.8.14] - 2024-01-26
812
### Melhorias
913
- Corrige verificação do valor no hook de que pega os campos entre fases

src/protected/application/lib/MapasCulturais/Controllers/Opportunity.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ function API_findEvaluations($opportunity_id = null) {
851851
valuer_user_id IN({$users}) AND
852852
registration_id IN ({$registration_ids})
853853
$sql_status
854-
ORDER BY registration_sent_timestamp ASC
854+
ORDER BY registration_sent_timestamp, valuer_user_id ASC
855855
$sql_limit
856856
", $params);
857857

0 commit comments

Comments
 (0)