From 761a413b999700beaa2ba8b881deca94c65b1dd8 Mon Sep 17 00:00:00 2001 From: blake Date: Thu, 9 Jun 2016 09:11:04 -0500 Subject: [PATCH] LP1528301 Add SIP Support for BF field on type 10 checkin responses This little patch will append the BF field in the SIP response during checkin when the item is for another hold. Some self check software vendors (ahem Bibliotheca) implement the hold phone number for the next patron this way. You will need this patch as well as the code change to the Evergreen repo LP1528301_Add_SIP_Support_for_BF_field_on_type_10_checkin_responses Signed-off-by: blake Signed-off-by: Martha Driscoll --- Sip/MsgType.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Sip/MsgType.pm b/Sip/MsgType.pm index 4079467..2862b7e 100644 --- a/Sip/MsgType.pm +++ b/Sip/MsgType.pm @@ -709,6 +709,7 @@ sub handle_checkin { $resp .= maybe_add(FID_DESTINATION_LOCATION, $item->destination_loc ); $resp .= maybe_add(FID_HOLD_PATRON_ID, $item->hold_patron_bcode ); $resp .= maybe_add(FID_HOLD_PATRON_NAME, $item->hold_patron_name ); + $resp .= maybe_add(FID_HOME_PHONE, $item->hold_patron_phone ); } } -- 2.11.0