Bugzilla – Attachment 1466 Details for
Bug 3616
neworderempty die if no budget exists
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
bugfix
0001--biblibre-newacq-bug-3616-fix-neworderempty.patch (text/plain), 1.54 KB, created by
Chris Cormack
on 2009-09-14 12:22:00 UTC
(
hide
)
Description:
bugfix
Filename:
MIME Type:
Creator:
Chris Cormack
Created:
2009-09-14 12:22:00 UTC
Size:
1.54 KB
patch
obsolete
>From 2068ef10e7f8b200237ef8935449cd1a9252247e Mon Sep 17 00:00:00 2001 >From: Nahuel ANGELINETTI <nahuel.angelinetti@biblibre.com> >Date: Mon, 14 Sep 2009 14:20:12 +0200 >Subject: [PATCH] [biblibre-newacq] (bug #3616) fix neworderempty >Content-Type: text/plain; charset="utf-8" > >if there is no budget, neworderempty dies, this must not happen. >This patchs fix it. >--- > acqui/neworderempty.pl | 9 +++++++-- > 1 files changed, 7 insertions(+), 2 deletions(-) > >diff --git a/acqui/neworderempty.pl b/acqui/neworderempty.pl >index e475b17..f4e13fa 100755 >--- a/acqui/neworderempty.pl >+++ b/acqui/neworderempty.pl >@@ -261,8 +261,10 @@ if ($budget) { # its a mod .. > if ( defined $budget->{'sort1_authcat'} ) { # with custom Asort* planning values > $CGIsort1 = GetAuthvalueDropbox( 'sort1', $budget->{'sort1_authcat'}, $data->{'sort1'} ); > } >-} else { >+} elsif(scalar(@$budgets)){ > $CGIsort1 = GetAuthvalueDropbox( 'sort1', @$budgets[0]->{'sort1_authcat'}, '' ); >+}else{ >+ $CGIsort1 = GetAuthvalueDropbox( 'sort1','', '' ); > } > > # if CGIsort is successfully fetched, the use it >@@ -278,9 +280,12 @@ if ($budget) { > if ( defined $budget->{'sort2_authcat'} ) { > $CGIsort2 = GetAuthvalueDropbox( 'sort2', $budget->{'sort2_authcat'}, $data->{'sort2'} ); > } >-} else { >+} elsif(scalar(@$budgets)) { > $CGIsort2 = GetAuthvalueDropbox( 'sort2', @$budgets[0]->{sort2_authcat}, '' ); >+}else{ >+ $CGIsort2 = GetAuthvalueDropbox( 'sort2','', '' ); > } >+ > if ($CGIsort2) { > $template->param( CGIsort2 => $CGIsort2 ); > } else { >-- >1.6.0.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 3616
: 1466