This commit is contained in:
Michele Artini 2021-05-06 08:25:35 +02:00
parent c2b7517b90
commit 425bfe65dc
2 changed files with 9 additions and 3 deletions

View File

@ -258,7 +258,7 @@ public class DatabaseUtils {
@Scheduled(fixedRate = 300000)
public void verifyConsistency() {
log.info("Verify consistency (START)");
log.debug("Verify consistency (START)");
// delete invalid pending orgs (without simrels)
final int n = jdbcTemplate
@ -268,7 +268,7 @@ public class DatabaseUtils {
log.info("Invalid pending orgs deleted: " + n);
}
log.info("Verify consistency (END)");
log.debug("Verify consistency (END)");
}

View File

@ -55,7 +55,13 @@
</td>
<td ng-class="{'col-3' : showNDups, 'col-4' : !showNDups }"><img ng-src="resources/images/flags/{{o.country}}.gif" /> {{o.city || '-'}}, {{o.country}}</td>
<td class="col-1 text-center">{{o.acronyms.join()}}</td>
<th class="col-1 text-center" ng-if="showNDups">{{o.nDifferentDups ? o.nDifferentDups : '-'}} / {{o.nSuggestedDups ? o.nSuggestedDups : '-'}} / {{o.nSimilarDups ? o.nSimilarDups : '-'}}</th>
<td class="col-1 text-center" ng-if="showNDups">
<span ng-class="{'badge badge-danger' : o.nDifferentDups}">{{o.nDifferentDups ? o.nDifferentDups : '-'}}</span>
/
<span ng-class="{'badge badge-info' : o.nSuggestedDups}">{{o.nSuggestedDups ? o.nSuggestedDups : '-'}}</span>
/
<span ng-class="{'badge badge-success' : o.nSimilarDups}">{{o.nSimilarDups ? o.nSimilarDups : '-'}}</span>
</td>
<td class="col-1 text-right">{{o.type}}</td>
</tr>
</tbody>