https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37842

            Bug ID: 37842
           Summary: GetReserveStatus does not deal with found="T"
 Change sponsored?: ---
           Product: Koha
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Hold requests
          Assignee: [email protected]
          Reporter: [email protected]
        QA Contact: [email protected]
                CC: [email protected]

786     if(defined $found) {
 787         return 'Waiting'  if $found eq 'W' and $priority == 0;
 788         return 'Processing'  if $found eq 'P';
 789         return 'Finished' if $found eq 'F';
 790     }
 791 
 792     return 'Reserved' if defined $priority && $priority > 0;
 793 
 794     return ''; # empty string here will remove need for checking undef, or
less log lines


It seems that we should deal with $found="T" here.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to