Bugzilla – Attachment 33101 Details for
Bug 8836
Resurrect Rotating Collections
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 8836 [QA Followup] - Don't transfer in items already in transit
PASSED-QA-Bug-8836-QA-Followup---Dont-transfer-in-.patch (text/plain), 1.05 KB, created by
Katrin Fischer
on 2014-10-31 19:27:19 UTC
(
hide
)
Description:
[PASSED QA] Bug 8836 [QA Followup] - Don't transfer in items already in transit
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2014-10-31 19:27:19 UTC
Size:
1.05 KB
patch
obsolete
>From 85740f1739915b04beb68cd46bfc9be70b681639 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Fri, 31 Oct 2014 08:18:28 -0400 >Subject: [PATCH] [PASSED QA] Bug 8836 [QA Followup] - Don't transfer in items > already in transit > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > C4/RotatingCollections.pm | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/C4/RotatingCollections.pm b/C4/RotatingCollections.pm >index f287994..5126175 100644 >--- a/C4/RotatingCollections.pm >+++ b/C4/RotatingCollections.pm >@@ -435,7 +435,8 @@ sub TransferCollection { > my @results; > while ( my $item = $sth->fetchrow_hashref ) { > my ($status) = CheckReserves( $item->{itemnumber} ); >- transferbook( $colBranchcode, $item->{barcode}, my $ignore_reserves = 1 ) unless ( $status eq 'Waiting' ); >+ my @transfers = GetTransfers( $item->{itemnumber} ); >+ transferbook( $colBranchcode, $item->{barcode}, my $ignore_reserves = 1 ) unless ( $status eq 'Waiting' || @transfers ); > } > > return 1; >-- >1.9.1
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 8836
:
12560
|
16746
|
19118
|
19119
|
19337
|
19339
|
21008
|
21009
|
21010
|
21011
|
23966
|
23967
|
23968
|
23969
|
23970
|
23971
|
23976
|
28140
|
28141
|
30838
|
30921
|
31087
|
32361
|
32362
|
32588
|
32589
|
32690
|
32691
|
32693
|
32773
|
32774
|
32973
|
32974
|
32975
|
32976
|
32994
|
32999
|
33000
|
33001
|
33002
|
33045
|
33046
|
33047
|
33048
|
33050
|
33051
|
33058
|
33059
|
33060
|
33061
|
33062
|
33063
|
33064
|
33065
|
33066
|
33068
|
33070
|
33095
|
33096
|
33097
|
33098
|
33099
|
33100
| 33101 |
33102
|
33103
|
33330
|
33331
|
33374