From: Galen Charlton Date: Tue, 7 Oct 2014 23:42:18 +0000 (-0700) Subject: LP#1378575: teach action::hold_request about behind_desk X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e57d480a0b47d4e5ab1f060cf772568341877b75;p=evergreen%2Fmasslnc.git LP#1378575: teach action::hold_request about behind_desk This patch teaches the CDBI class for the action.hold_request table about the newish behind_desk column, preventing errors like this from being thrown if a recent OpenSRF version is in use: Processing of hold failed: Can't locate object method "behind_desk" via package "action::hold_request" at /usr/local/share/perl/5.14.2/OpenILS/Application/Storage/CDBI.pm line 181. Signed-off-by: Galen Charlton Signed-off-by: Ben Shum --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI/action.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI/action.pm index e46b0fb632..8a33f4fae2 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI/action.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI/action.pm @@ -98,7 +98,7 @@ __PACKAGE__->columns(Essential => qw/request_time capture_time fulfillment_time phone_notify email_notify sms_notify sms_carrier selection_depth cancel_note pickup_lib current_copy request_lib frozen thaw_date mint_condition fulfillment_staff fulfillment_lib selection_ou cut_in_line - shelf_expire_time current_shelf_lib/); + shelf_expire_time current_shelf_lib behind_desk/); #-------------------------------------------------------------------------------