From: erickson Date: Mon, 25 Aug 2008 13:19:56 +0000 (+0000) Subject: add a page break after the print div. use storage instead of cstore for fetching... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8b47e9c5dfff7bfa58e3110da9567b2e479747d6;p=Evergreen.git add a page break after the print div. use storage instead of cstore for fetching hours of operation git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2@10434 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm b/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm index 24784e4c77..1fd6bbec4a 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm @@ -3066,7 +3066,10 @@ sub retrieve_org_hours { my $e = new_editor(authtoken => $auth); return $e->die_event unless $e->checkauth; $org_id ||= $e->requestor->ws_ou; - return $e->retrieve_actor_org_unit_hours_of_operation($org_id); + # use storage for <1.4 to avoid timezone issues with cstore + return $U->storagereq( + 'open-ils.storage.direct.actor.org_unit.hours_of_operation.retrieve', $org_id); + #return $e->retrieve_actor_org_unit_hours_of_operation($org_id); } diff --git a/Open-ILS/web/opac/extras/selfcheck/selfcheck_print.css b/Open-ILS/web/opac/extras/selfcheck/selfcheck_print.css index cd397f4135..c5ea5e2915 100644 --- a/Open-ILS/web/opac/extras/selfcheck/selfcheck_print.css +++ b/Open-ILS/web/opac/extras/selfcheck/selfcheck_print.css @@ -10,6 +10,7 @@ color: black; font-family: Arial; background-color: white; + page-break-after: always; } #selfck-print-patron-info { font-size: 8pt; }