Bugzilla – Attachment 184275 Details for
Bug 37604
Give skip_open_orders checkbox an ID in batch record deletion template
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37604: Add an ID to the batch record deletion "Skip biblio...." checkbox
Bug-37604-Add-an-ID-to-the-batch-record-deletion-S.patch (text/plain), 2.21 KB, created by
David Nind
on 2025-07-18 04:55:13 UTC
(
hide
)
Description:
Bug 37604: Add an ID to the batch record deletion "Skip biblio...." checkbox
Filename:
MIME Type:
Creator:
David Nind
Created:
2025-07-18 04:55:13 UTC
Size:
2.21 KB
patch
obsolete
>From 4bbecea44d04539a0f3464ff98490241884adcef Mon Sep 17 00:00:00 2001 >From: Aman Pilgrim <amanpilgrim@gmail.com> >Date: Thu, 17 Jul 2025 22:27:55 +0000 >Subject: [PATCH] Bug 37604: Add an ID to the batch record deletion "Skip > biblio...." checkbox > >This patch adds an ID to the "Skip bibliographic records with open >acquisition orders" checkbox on the batch record deletion page (Cataloging > >Batch editing > Batch record deletion". > >This is required so that when selecting or unselecting the checkbox, the focus >remains on the checkbox. > >Test plan: >1. Navigate to Home > Cataloging > Batch record deletion >2. Click 'Skip bibliographic records with open acquisition orders' to toggle > the Record type checkbox (selected by default). >3. Inspect the page (right click the page, select Inspect, and look at the > values in the checheckbox input field): > . before the patch there is no id for the field > . after the patch there is an id="skip_open_orders" for the checkbox field > >Signed-off-by: David Nind <david@davidnind.com> >--- > .../intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt >index aa5033dde5c..1bfd843ed77 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt >@@ -91,7 +91,7 @@ > <li><label for="biblio_type">Bibliographic: </label><input type="radio" name="recordtype" value="biblio" id="biblio_type" checked="checked" /></li> > <li><label for="authority_type">Authorities: </label><input type="radio" name="recordtype" value="authority" id="authority_type" /></li> > <li class="skip_open_orders"> >- <input type="checkbox" name="skip_open_orders" checked /> >+ <input type="checkbox" name="skip_open_orders" id="skip_open_orders" checked /> > <label for="skip_open_orders">Skip bibliographic records with open acquisition orders</label> > </li> > </ol> >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37604
:
184260
|
184275
|
184276