[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/opac opac-modrequest.pl [dev_week]
From: |
Joshua Ferraro |
Subject: |
[Koha-cvs] koha/opac opac-modrequest.pl [dev_week] |
Date: |
Tue, 10 Jul 2007 13:01:25 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: dev_week
Changes by: Joshua Ferraro <kados> 07/07/10 13:01:25
Added files:
opac : opac-modrequest.pl
Log message:
New feature: let patrons delete holds from their account
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/opac/opac-modrequest.pl?cvsroot=koha&only_with_tag=dev_week&rev=1.1.2.1
Patches:
Index: opac-modrequest.pl
===================================================================
RCS file: opac-modrequest.pl
diff -N opac-modrequest.pl
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ opac-modrequest.pl 10 Jul 2007 13:01:25 -0000 1.1.2.1
@@ -0,0 +1,50 @@
+#!/usr/bin/perl
+
+#script to modify reserves/requests
+#written 2/1/00 by address@hidden
+#last update 27/1/2000 by address@hidden
+
+
+# Copyright 2000-2002 Katipo Communications
+#
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# 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
+
+use strict;
+#use DBI;
+use C4::Search;
+use CGI;
+use C4::Output;
+use C4::Reserves2;
+
+my $input = new CGI;
+#print $input->header;
+
+#print $input->Dump;
+
+my @rank=$input->param('rank-request');
+my @biblio=$input->param('biblio');
+my @borrower=$input->param('borrowernumber');
+my @branch=$input->param('pickup');
+my address@hidden;
+
+# goes through and manually changes the reserves record....
+# no attempt is made to check consistency.
+for (my $i=0;$i<$count;$i++){
+ UpdateReserve($rank[$i],$biblio[$i],$borrower[$i],$branch[$i]); #from
C4::Reserves2
+}
+
+#my $from=$input->param('from');
+print $input->redirect("/cgi-bin/koha/opac-user.pl?display=reserves");
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] koha/opac opac-modrequest.pl [dev_week],
Joshua Ferraro <=