]> git.koha-community.org Git - koha.git/commit
Bug 14194: Restore the HH:MM to 23:59 for onsite-checkouts
authorJonathan Druart <jonathan.druart@koha-community.org>
Tue, 12 May 2015 11:11:40 +0000 (13:11 +0200)
committerChris Cormack <chrisc@catalyst.net.nz>
Sun, 17 May 2015 23:19:19 +0000 (11:19 +1200)
commit6e8ff4ed49e24e10189ac0be3d050abf27daa5c6
tree2fb8cfb978eca6c0df23f77377b6bc19df5b6288
parent3cf4f1e3487e5cc6946cfbdcd8d971dada02726d
Bug 14194: Restore the HH:MM to 23:59 for onsite-checkouts

(Introduced by bug 13601)

Test plan
=========
1/ enable 'OnSiteCheckouts' pref under Circulation Preferences
2/ go to the checkouts page and try to issue an item to any user.
3/ when the item barcode entry form shows, select the 'On-site
   checkout' checkbox
4/ the default date due should show as today with 00:00 as HH:MM
5/ apply the patch
6/ repeat steps 2 - 3. The default date due should show today's
   date with 23:59 as HH:MM.
7/ run koha-qa.pl -c 1 -v 2

Remarks: Testing result match expected test plan output. The QA tests
         pass with "OK" for the commit.

Technical note: There is a confusion with iso and sql date formats at
some places in the code.
A better way should be provided (later) to fix globally the mismatch
between these 2 formats.
What happened before this patch: the DateTime was cast to a string and
the template received "YYYY-MM-DDTHH:MM:SS" which is an iso formatted
date. BUT this format is not managed by Koha::DateUtils::output_pref
("iso" and "sql" are considered as indentical which is wrong).
As I did not estimated the problem (how big it is) I prefer to fix it
easily (and dirty) for now.

Signed-off-by: Indranil Das Gupta (L2C2 Technologies) <indradg@gmail.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
(cherry picked from commit 4be083803334321c48d6df5013f20e503274efc7)
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
circ/circulation.pl