This commit refines the batch processing interface by improving the visibility logic for various action groups based on selection states. New UI elements, including a prompt for batch picking and a warning for reset actions, are introduced to enhance user guidance. CSS styles are updated to support these changes, ensuring a clearer and more interactive experience. The version code is incremented to reflect these updates.
17 lines
2.1 KiB
SQL
17 lines
2.1 KiB
SQL
-- MSIN-4379 — Encart « choisissez vos séquences » (mode assignation / reset batch)
|
|
-- Aucun DELETE. N'écrase pas les entrées existantes.
|
|
|
|
INSERT INTO info (info_clef, info_langue, info_texte, info_aide, info_prg, info_description, info_trie, info_actif, info_option1, info_option2, info_option3, info_creation)
|
|
SELECT 'bib_v4_batch_pick_title', 'fr', 'Choisissez une ou plusieurs séquences', 'Étape 1 du mode assignation : cocher les lignes à droite du tableau.', 'compte.php', '', 0, 1, '', '', '', NOW()
|
|
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM info WHERE info_clef = 'bib_v4_batch_pick_title' AND info_langue = 'fr' AND info_prg = 'compte.php');
|
|
INSERT INTO info (info_clef, info_langue, info_texte, info_aide, info_prg, info_description, info_trie, info_actif, info_option1, info_option2, info_option3, info_creation)
|
|
SELECT 'bib_v4_batch_pick_title', 'en', 'Select one or more sequences', 'Step 1 of assignment mode: check the rows on the right of the table.', 'compte.php', '', 0, 1, '', '', '', NOW()
|
|
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM info WHERE info_clef = 'bib_v4_batch_pick_title' AND info_langue = 'en' AND info_prg = 'compte.php');
|
|
|
|
INSERT INTO info (info_clef, info_langue, info_texte, info_aide, info_prg, info_description, info_trie, info_actif, info_option1, info_option2, info_option3, info_creation)
|
|
SELECT 'bib_v4_batch_pick_hint', 'fr', 'Cochez les séquences dans la colonne à droite du tableau, puis configurez l''assignation ci-dessous.', '', 'compte.php', '', 0, 1, '', '', '', NOW()
|
|
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM info WHERE info_clef = 'bib_v4_batch_pick_hint' AND info_langue = 'fr' AND info_prg = 'compte.php');
|
|
INSERT INTO info (info_clef, info_langue, info_texte, info_aide, info_prg, info_description, info_trie, info_actif, info_option1, info_option2, info_option3, info_creation)
|
|
SELECT 'bib_v4_batch_pick_hint', 'en', 'Check sequences in the column on the right of the table, then configure assignment below.', '', 'compte.php', '', 0, 1, '', '', '', NOW()
|
|
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM info WHERE info_clef = 'bib_v4_batch_pick_hint' AND info_langue = 'en' AND info_prg = 'compte.php');
|