Changes for page Postup převodu dat z Clavia
Last modified by Jan Šimeček on 2025/11/03 15:11
From version 48.1
edited by Jan Šimeček
on 2024/06/28 11:09
on 2024/06/28 11:09
Change comment:
There is no comment for this version
To version 46.1
edited by Jan Šimeček
on 2024/06/28 11:03
on 2024/06/28 11:03
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -273,4 +273,26 @@ 273 273 274 274 Všechny nové regulární výrazy je třeba nejprve otestovat vývojářem - **ReplaceHelperTest**. 275 275 276 - 276 +<button onclick="toggleContent('content5')">Příkaz pro kontrolu</button> 277 +<div id="content5" style="display: none;"> 278 +<hr style="border: none; height: 5px; background-color: black;"> 279 +<p>select count(*) from authority_data where subfield_definition in (</p> 280 +<p>select id from subfield_definition where name_sub='A')</p> 281 +<br> 282 +<p>select count(*) from work_data where subfield_definition in (</p> 283 +<p>select id from subfield_definition where name_sub='A')</p> 284 +<br> 285 +<p>dále:</p> 286 +<p>Po zapnutí Importovacího módu nesmí tabulka import_id_backup obsahovat jediný řádek, který má ve sloupci library ID právě převáděné knihovny, tedy select * from import_id_backup where library = ID_prave_prevadene_knihovny musí vrátit 0 .</p> 287 +<hr style="border: none; height: 5px; background-color: black;"> 288 +</div> 289 +<script> 290 + function toggleContent(contentId) { 291 + var content = document.getElementById(contentId); 292 + if (content.style.display === "none") { 293 + content.style.display = "block"; 294 + } else { 295 + content.style.display = "none"; 296 + } 297 + } 298 +</script>