From bdb99680f169b3bd5027b23af8590c443b3d5eb3 Mon Sep 17 00:00:00 2001 From: Adrien Saurat Date: Fri, 4 Nov 2011 14:20:31 +0100 Subject: [PATCH] Bug 6893 : Updates suggestions list when adding orders A suggestion added through addorder.pl now changes to the ORDERED status as initially intended (but so far it stayed as ACCEPTED). This fixes the list of potential suggestions to order, the ORDERED ones don't appear anymore. --- C4/Suggestions.pm | 2 +- acqui/addorder.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Suggestions.pm b/C4/Suggestions.pm index 1a93f2e..288c12b 100644 --- a/C4/Suggestions.pm +++ b/C4/Suggestions.pm @@ -113,7 +113,7 @@ sub SearchSuggestion { LEFT JOIN borrowers AS U2 ON managedby=U2.borrowernumber LEFT JOIN branches AS B2 ON B2.branchcode=U2.branchcode LEFT JOIN categories AS C2 ON C2.categorycode = U2.categorycode - WHERE STATUS NOT IN ('CLAIMED') + WHERE STATUS NOT IN ('ORDERED') } , map { if ( my $s = $suggestion->{$_} ) { push @sql_params,'%'.$s.'%'; diff --git a/acqui/addorder.pl b/acqui/addorder.pl index d7f7e96..121d20d 100755 --- a/acqui/addorder.pl +++ b/acqui/addorder.pl @@ -212,7 +212,7 @@ if ( $orderinfo->{quantity} ne '0' ) { my ($biblionumber,$bibitemnum) = AddBiblio($record,''); # change suggestion status if applicable if ($$orderinfo{suggestionid}) { - ModSuggestion( {suggestionid=>$$orderinfo{suggestionid}, status=>'ORDERED', biblionumber=>$biblionumber} ); + ModSuggestion( {suggestionid=>$$orderinfo{suggestionid}, STATUS=>'ORDERED', biblionumber=>$biblionumber} ); } $orderinfo->{biblioitemnumber}=$bibitemnum; $orderinfo->{biblionumber}=$biblionumber; -- 1.7.4.1