Bugzilla – Attachment 62096 Details for
Bug 14399
Fix inventory.pl part two (following 12913)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14399: Prevent display of double zero notforloan status
Bug-14399-Prevent-display-of-double-zero-notforloa.patch (text/plain), 1.60 KB, created by
Marcel de Rooy
on 2017-04-12 15:00:52 UTC
(
hide
)
Description:
Bug 14399: Prevent display of double zero notforloan status
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2017-04-12 15:00:52 UTC
Size:
1.60 KB
patch
obsolete
>From cf5fd220604f5f265129c185711a52566735aa8d Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Mon, 3 Apr 2017 13:05:13 +0200 >Subject: [PATCH] Bug 14399: Prevent display of double zero notforloan status >Content-Type: text/plain; charset=utf-8 > >On bug 12913 a zero status is added on the inventory form. This prevents >a lot of false warnings for a wrong notforloan status. The zero status >is not included in the default setup. But if you would add one, the >status will display here twice now. > >This patch checks if the status already exists. > >Test plan: >[1] Add a zero NOTFORLOAN status if it does not yet exist in Authorized > values. >[2] Check that you do not see two "For loan" statuses on inventory form. > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > tools/inventory.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/tools/inventory.pl b/tools/inventory.pl >index 731ad77..9efa8c5 100755 >--- a/tools/inventory.pl >+++ b/tools/inventory.pl >@@ -97,7 +97,7 @@ for my $statfield (qw/items.notforloan items.itemlost items.withdrawn items.dama > if ( $statfield eq 'items.notforloan') { > # Add notforloan == 0 to the list of possible notforloan statuses > # The lib value is replaced in the template >- push @$arr, { authorised_value => 0, id => 'stat0' , lib => 'ignore' }; >+ push @$arr, { authorised_value => 0, id => 'stat0' , lib => 'ignore' } if ! grep { $_->{authorised_value} eq '0' } @$arr; > @notforloans = map { $_->{'authorised_value'} } @$arr; > } > $hash->{values} = $arr; >-- >2.1.4
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 14399
:
61685
|
62096
|
62097
|
62098
|
62099
|
62139
|
62140
|
62733
|
62734
|
62735
|
62736
|
63465
|
63466
|
63467
|
63468
|
67546
|
67547
|
67548
|
67549