Bug 8255: allow local cover images to be cached
[koha_gimpoz] / acqui / uncertainprice.pl
index e897498..792b8af 100755 (executable)
@@ -17,9 +17,9 @@
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along with
-# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
-# Suite 330, Boston, MA  02111-1307 USA
+# You should have received a copy of the GNU General Public License along
+# with Koha; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 
 =head1 NAME
@@ -67,12 +67,13 @@ my ($template, $loggedinuser, $cookie)
                 });
 
 my $booksellerid = $input->param('booksellerid');
+my $basketno     = $input->param('basketno');
 my $op = $input->param('op');
 my $owner = $input->param('owner') || 0 ; # flag to see only "my" orders, or everyone orders
 my $bookseller = &GetBookSellerFromId($booksellerid);
 
 #show all orders that have uncertain price for the bookseller
-my $pendingorders = &GetPendingOrders($booksellerid,0,$owner);
+my $pendingorders = &GetPendingOrders($booksellerid,0,$owner,$basketno);
 my @orders;
 
 foreach my $order (@{$pendingorders}) {
@@ -83,6 +84,8 @@ foreach my $order (@{$pendingorders}) {
         $order->{'bibpublicationyear'} = $bibdata->{'publicationyear'};
         $order->{'bibtitle'} = $bibdata->{'title'};
         $order->{'bibauthor'} = $bibdata->{'author'};
+        $order->{'surname'} = $order->{'surname'};
+        $order->{'firstname'} = $order->{'firstname'};
         my $order_as_from_db=GetOrder($order->{ordernumber});
         $order->{'quantity'} = $order_as_from_db->{'quantity'};
         $order->{'listprice'} = $order_as_from_db->{'listprice'};