Bugzilla – Attachment 111607 Details for
Bug 26643
Staff should be notified that a transfer has been completed on checkin
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26643: Notify librarian of completed transfers
Bug-26643-Notify-librarian-of-completed-transfers.patch (text/plain), 3.72 KB, created by
Katrin Fischer
on 2020-10-14 12:15:47 UTC
(
hide
)
Description:
Bug 26643: Notify librarian of completed transfers
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2020-10-14 12:15:47 UTC
Size:
3.72 KB
patch
obsolete
>From 271230ae208b6c436dc7740486e99098a633309f Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Fri, 9 Oct 2020 13:08:45 +0100 >Subject: [PATCH] Bug 26643: Notify librarian of completed transfers > >It came to light that it's not clear to all users that a checkin results >in the completion of a transfer if one exists for the item being checked >in. This patch adds such a notification to the error messages loop to >highlight that the item has been recieved from it's sending brnach. > >To test >1/ Setup a transfer from branch A to branch B >2/ Check the item in at branch B >3/ Note that a new message appears in the 'Check in message' alert box >saying "Item recieved from branch A" >4/ Signoff > >Signed-off-by: Sally <sally.healey@cheshiresharedservices.gov.uk> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > C4/Circulation.pm | 3 ++- > circ/returns.pl | 3 +++ > koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 3 +++ > 3 files changed, 8 insertions(+), 1 deletion(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 2f91511dbd..900fe1e096 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -2038,7 +2038,7 @@ sub AddReturn { > # check if we have a transfer for this document > my ($datesent,$frombranch,$tobranch) = GetTransfers( $item->itemnumber ); > >- # if we have a transfer to do, we update the line of transfers with the datearrived >+ # if we have a transfer to complete, we update the line of transfers with the datearrived > my $is_in_rotating_collection = C4::RotatingCollections::isItemInAnyCollection( $item->itemnumber ); > if ($datesent) { > # At this point we will either fill the transfer or it is a wrong transfer >@@ -2049,6 +2049,7 @@ sub AddReturn { > "UPDATE branchtransfers SET datearrived = now() WHERE itemnumber= ? AND datearrived IS NULL" > ); > $sth->execute( $item->itemnumber ); >+ $messages->{'TransferArrived'} = $frombranch; > } else { > $messages->{'WrongTransfer'} = $tobranch; > $messages->{'WrongTransferItem'} = $item->itemnumber; >diff --git a/circ/returns.pl b/circ/returns.pl >index 6c9718495b..c49261be59 100755 >--- a/circ/returns.pl >+++ b/circ/returns.pl >@@ -515,6 +515,9 @@ foreach my $code ( keys %$messages ) { > elsif ( $code eq 'TransferTrigger' ) { > ; # Handled alongside NeedsTransfer > } >+ elsif ( $code eq 'TransferArrived' ) { >+ $err{transferred} = $messages->{'TransferArrived'}; >+ } > elsif ( $code eq 'Wrongbranch' ) { > } > elsif ( $code eq 'Debarred' ) { >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >index 31c03fa898..e5890a6f6b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >@@ -255,6 +255,9 @@ > [% IF ( errmsgloo.localuse) %] > <p class="problem ret_localuse">Local use recorded</p> > [% END %] >+ [% IF ( errmsgloo.transferred ) %] >+ <p class="problem ret_transferred">Item recieved from [% Branches.GetName( errmsgloo.transferred ) | html %]</p> >+ [% END %] > [% IF ( errmsgloo.waslost ) %] > [% IF Koha.Preference('BlockReturnOfLostItems') %] > <p class="problem ret_blocked">Item is lost, cannot be checked in.</p> >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 26643
:
111397
|
111404
| 111607 |
111608