Bug 6739: (follow-up) fix various issues
authorKyle M Hall <kyle@bywatersolutions.com>
Tue, 12 Mar 2013 17:46:41 +0000 (13:46 -0400)
committerGalen Charlton <gmc@esilibrary.com>
Mon, 5 May 2014 01:51:24 +0000 (01:51 +0000)
- translation issues
- wording issues

Signed-off-by: Melia Meggs <melia@bywatersolutions.com>
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
C4/Members.pm
koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt
koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt
opac/opac-renew.pl
opac/opac-reserve.pl
opac/opac-user.pl

index fc0f0b4..c3bd1c3 100644 (file)
@@ -380,6 +380,15 @@ sub GetMemberDetails {
         $borrower->{'showname'} = $borrower->{'firstname'};
     }
 
+    # Handle setting the true behavior for BlockExpiredPatronOpacActions
+    $borrower->{'BlockExpiredPatronOpacActions'} =
+      C4::Context->preference('BlockExpiredPatronOpacActions')
+      if ( $borrower->{'BlockExpiredPatronOpacActions'} == -1 );
+
+    $borrower->{'is_expired'} =
+      Date_to_Days( Today() ) >
+      Date_to_Days( split /-/, $borrower->{'dateexpiry'} );
+
     return ($borrower);    #, $flags, $accessflagshash);
 }
 
index 44c0b1e..40898ad 100644 (file)
     </li>
     <li><label for="block_expired">Block expired patrons</label>
         <select name="block_expired" id="block_expired">
-            <option value="-1" [% IF ( BlockExpiredPatronOpacActions == -1  ) %] selected="selected" [% END %]> Follow system preference BlockExpiredPatronOpacActions </option>
-            <option value="1"  [% IF ( BlockExpiredPatronOpacActions == 1   ) %] selected="selected" [% END %]> Block </option>
-            <option value="0"  [% IF ( BlockExpiredPatronOpacActions == 0   ) %] selected="selected" [% END %]> Don't block </option>
+            [% IF ( BlockExpiredPatronOpacActions == -1  ) %]
+                <option value="-1" selected="selected"> Follow system preference BlockExpiredPatronOpacActions </option>
+            [% ELSE %]
+                <option value="-1"> Follow system preference BlockExpiredPatronOpacActions </option>
+            [% END %]
+
+            [% IF ( BlockExpiredPatronOpacActions == 1   ) %]
+                <option value="1" selected="selected"> Block </option>
+            [% ELSE %]
+                <option value="1"> Block </option>
+            [% END %]
+
+            [% IF ( BlockExpiredPatronOpacActions == 0   ) %]
+                <option value="0" selected="selected"> Don't block </option>
+            [% ELSE %]
+                <option value="0"> Don't block </option>
+            [% END %]
         </select>
         Should patrons of this category be blocked from opac actions such as renew and reserve when their cards have expired.
     </li>
index c71ad2d..882a9ba 100644 (file)
@@ -92,17 +92,29 @@ var MSG_CONFIRM_RESUME_HOLDS  = _("Are you sure you want to resume all suspended
 
         [% IF ( BORROWER_INF.warnexpired ) %]
         <div class="dialog alert" id="warnexpired">
-            <strong>Please note:</strong><span> Your card has expired. Please contact the library for more information.</span>
+            <strong>Please note:</strong><span> Your account has expired. Please contact the library for more information.</span>
         </div>
         [% ELSIF ( BORROWER_INF.warnexpired ) %]
         <div class="dialog alert">
-                <string>Please note:</string><span> You card has expired as of [% BORROWER_INF.warnexpired %]. Please contact the library if you wish to renew your subscription.</span>
+                <strong>Please note:</strong><span> You account has expired as of [% BORROWER_INF.warnexpired %]. Please contact the library if you wish to renew your account.</span>
         </div>
         [% END %]
 
         [% IF ( RENEW_ERROR ) %]
         <div class="dialog alert">
-                <string>Please note:</string><span> You're renew failed with the following error: [% RENEW_ERROR %]</span>
+                <string>Please note:</string>
+                <span>
+                    Your account renewal failed because of the following:
+                    [% FOREACH error IN RENEW_ERROR.split('|') %]
+                        [% IF error == 'card_expired' %]
+                            Your account has expired. Please contact the library for more information.
+                        [% ELSIF error == 'too_many' %]
+                            You have renewed this item the maximum number of times allowed.
+                        [% ELSIF error == 'on_reserve' %]
+                            This item is on hold for another patron.
+                        [% END %]
+                    [% END %]
+                </span>
         </div>
         [% END %]
 
index 9c6511a..ca58f3d 100755 (executable)
@@ -27,6 +27,7 @@ use warnings;
 use CGI;
 use C4::Circulation;
 use C4::Auth;
+use C4::Context;
 use C4::Items;
 use C4::Members;
 use Date::Calc qw( Today Date_to_Days );
@@ -48,38 +49,41 @@ my $opacrenew = C4::Context->preference("OpacRenewalAllowed");
 
 my $errorstring='';
 my $member_details = GetMemberDetails($borrowernumber);
-# BlockExpiredPatronOpacActions syspref 0 is false, 1 is true. BlockExpiredPatronOpacActions for categories (from GetMemberDetails) -1 means use syspref, 0 is false, 1 is true (where false means dont block, true means block)
-if( ($member_details->{'BlockExpiredPatronOpacActions'} == -1 ? C4::Conext->preference('BlockExpiredPatronOpacActions') : $member_details->{'BlockExpiredPatronOpacActions'})
-    && Date_to_Days( Today() ) > Date_to_Days( split /-/, $member_details->{'dateexpiry'} ) ){
-   $errorstring='unable to renew as your card has expired';
-} else {
-    for my $itemnumber ( @items ) {
-        my ($status,$error) = CanBookBeRenewed( $borrowernumber, $itemnumber );
+
+if (   $member_details->{'BlockExpiredPatronOpacActions'}
+    && $member_details->{'is_expired'} )
+{
+    $errorstring = 'card_expired';
+}
+else {
+    for my $itemnumber (@items) {
+        my ( $status, $error ) =
+          CanBookBeRenewed( $borrowernumber, $itemnumber );
         if ( $status == 1 && $opacrenew == 1 ) {
             my $renewalbranch = C4::Context->preference('OpacRenewalBranch');
             my $branchcode;
-            if ($renewalbranch eq 'itemhomebranch'){
+            if ( $renewalbranch eq 'itemhomebranch' ) {
                 my $item = GetItem($itemnumber);
-                $branchcode=$item->{'homebranch'};
+                $branchcode = $item->{'homebranch'};
             }
-            elsif ($renewalbranch eq 'patronhomebranch'){
+            elsif ( $renewalbranch eq 'patronhomebranch' ) {
                 my $borrower = GetMemberDetails($borrowernumber);
                 $branchcode = $borrower->{'branchcode'};
             }
-            elsif ($renewalbranch eq 'checkoutbranch'){
+            elsif ( $renewalbranch eq 'checkoutbranch' ) {
                 my $issue = GetOpenIssue($itemnumber);
                 $branchcode = $issue->{'branchcode'};
             }
-            elsif ($renewalbranch eq 'NULL'){
-                $branchcode='';
+            elsif ( $renewalbranch eq 'NULL' ) {
+                $branchcode = '';
             }
             else {
-                $branchcode='OPACRenew'
+                $branchcode = 'OPACRenew';
             }
-            AddRenewal( $borrowernumber, $itemnumber, $branchcode);
+            AddRenewal( $borrowernumber, $itemnumber, $branchcode );
         }
         else {
-            $errorstring .= $error ."|";
+            $errorstring .= $error . "|";
         }
     }
 }
index 65ea946..a842869 100755 (executable)
@@ -67,12 +67,13 @@ sub get_out {
 my ( $borr ) = GetMemberDetails( $borrowernumber );
 
 # check if this user can place a reserve, -1 means use sys pref, 0 means dont block, 1 means block
-if( $borr->{'BlockExpiredPatronOpacActions'} == -1 ? C4::Context->preference("BlockExpiredPatronOpacActions") : $borr->{'BlockExpiredPatronOpacActions'} ) {
+if ( $borr->{'BlockExpiredPatronOpacActions'} ) {
+
+    if ( $borr->{'is_expired'} ) {
 
-    if( Date_to_Days( Today() ) > Date_to_Days( split /-/, $borr->{'dateexpiry'} ) ){
         # cannot reserve, their card has expired and the rules set mean this is not allowed
-        $template->param( message=>1, expired_patron=>1 );
-        get_out($query, $cookie, $template->output);
+        $template->param( message => 1, expired_patron => 1 );
+        get_out( $query, $cookie, $template->output );
     }
 }
 
index c16d575..935850e 100755 (executable)
@@ -135,7 +135,7 @@ if ( $borr->{'dateexpiry'} && C4::Context->preference('NotifyBorrowerDeparture')
 }
 
 # pass on any renew errors to the template for displaying
-$template->param( RENEW_ERROR => $query->param('renew_error') ) if $query->param('renew_error');
+my $renew_error = $query->param('renew_error');
 
 $template->param(   BORROWER_INFO     => \@bordat,
                     borrowernumber    => $borrowernumber,
@@ -143,6 +143,7 @@ $template->param(   BORROWER_INFO     => \@bordat,
                     OPACMySummaryHTML => (C4::Context->preference("OPACMySummaryHTML")) ? 1 : 0,
                     surname           => $borr->{surname},
                     showname          => $borr->{showname},
+                    RENEW_ERROR       => $renew_error,
                 );
 
 #get issued items ....