Bugzilla – Attachment 108079 Details for
Bug 16748
Batch checkout needs set due date
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16748: Add the ability to define due date in batch checkout
Bug-16748-Add-the-ability-to-define-due-date-in-ba.patch (text/plain), 3.41 KB, created by
PTFS Europe Sandboxes
on 2020-08-11 15:20:42 UTC
(
hide
)
Description:
Bug 16748: Add the ability to define due date in batch checkout
Filename:
MIME Type:
Creator:
PTFS Europe Sandboxes
Created:
2020-08-11 15:20:42 UTC
Size:
3.41 KB
patch
obsolete
>From 621f70e951f7fdffeb742739f7939bbee00d0629 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 4 Aug 2020 16:55:56 +0200 >Subject: [PATCH] Bug 16748: Add the ability to define due date in batch > checkout > >This patch allows the librarian to pick the due date when batch checkout > >Test plan: >Batch checkout using a hard due date >=> Notice that the due date is taken into account >Batch checkout the same barcodes with a different due date, to trigger the confirmation step >=> Notice that the due date is taken into account for the renewals > >Signed-off-by: Henry Bolshaw <bolshawh@parliament.uk> >--- > .../en/modules/circ/circulation_batch_checkouts.tt | 24 +++++++++++++++++++++- > 1 file changed, 23 insertions(+), 1 deletion(-) > >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 4df661a155..8483d5763b 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 >@@ -1,6 +1,7 @@ > [% USE raw %] > [% USE Asset %] > [% USE Branches %] >+[% USE Koha %] > [% USE KohaDates %] > [% USE Price %] > [% USE AuthorisedValues %] >@@ -77,6 +78,13 @@ > </li> > </ol> > </fieldset> >+ [% IF Koha.Preference('SpecifyDueDate') %] >+ <fieldset class="rows"> >+ <legend>Due date: </legend> >+ <label for="duedatespec">Hard due date [% INCLUDE 'date-format.inc' %]:</label> >+ <input type="text" size="20" id="duedatespec" name="duedatespec" value="[% duedatespec | $KohaDates with_hours => 1 %]" /> >+ </fieldset> >+ [% END %] > <input type="hidden" name="op" value="show" /> > <fieldset class="action"> > <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" /> >@@ -259,7 +267,7 @@ > [% END %] > > [% IF checkout_info.issue.date_due %] >- <li>Due on [% checkout_info.issue.date_due | $KohaDates %]</li> >+ <li>Due on [% checkout_info.issue.date_due | $KohaDates as_due_date => 1 %]</li> > [% END %] > </td> > </tr> >@@ -274,6 +282,7 @@ > <input type="hidden" name="issueconfirmed" value="1" /> > <input type="hidden" name="debt_confirmed" value="1" /> > <input type="hidden" name="branch" value="[% branch | html %]" /> >+ <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" /> > <input type="hidden" name="batch" value="1" /> > <input type="submit" id="checkoutrenew" class="approve" value="Checkout or renew" /> > </fieldset> >@@ -315,7 +324,20 @@ > ], > "bPaginate": false > })); >+ >+ [% IF Koha.Preference('SpecifyDueDate') %] >+ $("#duedatespec").datetimepicker({ >+ onClose: function(dateText, inst) { >+ validate_date(dateText, inst); >+ }, >+ hour: 23, >+ minute: 59 >+ }).on("change", function(e, value) { >+ if ( ! is_valid_date( $(this).val() ) ) {$(this).val("");} >+ }); >+ [% END %] > }); >+ > </script> > [% INCLUDE 'str/members-menu.inc' %] > [% Asset.js("js/members-menu.js") | $raw %] >-- >2.11.0
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 16748
:
107781
|
107782
|
107783
|
107785
|
107863
|
107864
|
108079
|
108344