From 42297ccda3e78ad630f6927896a0204b470e039b Mon Sep 17 00:00:00 2001 From: Fabricio Molina Date: Mon, 3 Jul 2023 14:55:59 +0000 Subject: [PATCH] Bug 28805: Add on-site checkout checkbox in batch checkout MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add the 'on-site checkout' checkbox to the 'Batch checkout'. To verify the functionality, follow these steps: 1) Before the modification is added, enable the 'OnSiteCheckouts' and 'BatchCheckout' system preferences. 2) In the 'BatchCheckoutsValidCategories' preference, select all categories. 3) Find a user in the system. For example, Henry Acevedo. 4) In the 'Check out' section, you can see that the 'Checkout settings' option displays the 'On-site Checkout' checkbox when clicked. 5) Check the 'On-site checkout' option. This will display the current date with a runtime deadline of 23:59. 6) Enter a barcode (for example 39999000011418). 7) Click the 'Check out' button. This will show that the loan was made on-site. 8) Check the 'Batch checkout' section. This section does not hace the 'On-site checkout' checkbox. When loading the patch with the addition of the 'on-site checkout' checkbox in 'Batch checkout' starting from step 3), you can already find the checkbox in the 'Batch checkout' section. To use it, you can try the barcodes 39999000006179 and 39999000008494 together. Then continue from step 5). When viewing the loans, you will see that both items (39999000006179 and 39999000008494) will appear with the label 'On-site checkout'. If this patch is deactivated, the functionality will remain the same as it was before this change. Sponsored-by: Banco Central de la República Argentina Signed-off-by: Sam Lau Signed-off-by: Nick Clemens Signed-off-by: Tomas Cohen Arazi --- .../circ/circulation_batch_checkouts.tt | 39 +++++++++++++++---- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt index f9f31a0212..cab070defa 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt @@ -100,15 +100,29 @@ - [% IF Koha.Preference('SpecifyDueDate') %] -
- Due date: - - -
- [% END %] +
+ Due date +
    + [% IF Koha.Preference('SpecifyDueDate') %] +
  1. + + +
  2. + [% END %] + [% IF Koha.Preference('OnSiteCheckouts') %] +
  3. +
    + + +
    +
  4. + [% END %] +
+
+ +
@@ -349,10 +363,19 @@ "bPaginate": false })); }); + // On-site batch checkout + function toggle_onsite_checkout(){ + if ( $("#onsite_checkout").prop('checked') ) { + const duedatespec_fp = document.querySelector("#duedatespec")._flatpickr; + duedatespec_fp.setDate("[% today_due_date_and_time | $KohaDates dateformat => 'iso', with_hours => 1 %]"); + }; + }; + $("#onsite_checkout").click(function(){ + toggle_onsite_checkout(); + }); [% INCLUDE 'str/members-menu.inc' %] - [% Asset.js("js/members-menu.js") | $raw %] [% END %] [% INCLUDE 'intranet-bottom.inc' %] -- 2.39.2