koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha members/mancredit.pl members/maninvoice.pl... [rel_3_0]


From: Antoine Farnault
Subject: [Koha-cvs] koha members/mancredit.pl members/maninvoice.pl... [rel_3_0]
Date: Tue, 26 Sep 2006 14:06:32 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_3_0
Changes by:     Antoine Farnault <toins>        06/09/26 14:06:32

Modified files:
        members        : mancredit.pl maninvoice.pl 
Added files:
        koha-tmpl/intranet-tmpl/prog/en/members: mancredit.tmpl 
                                                 maninvoice.tmpl 
Removed files:
        koha-tmpl/intranet-tmpl/prog/en: mancredit.tmpl maninvoice.tmpl 

Log message:
        moving 2 members templates in members/

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/mancredit.tmpl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.2&r2=0
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/maninvoice.tmpl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.2&r2=0
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/members/mancredit.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/members/maninvoice.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1
http://cvs.savannah.gnu.org/viewcvs/koha/members/mancredit.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1.2.1&r2=1.1.2.2
http://cvs.savannah.gnu.org/viewcvs/koha/members/maninvoice.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1.2.1&r2=1.1.2.2

Patches:
Index: members/mancredit.pl
===================================================================
RCS file: /sources/koha/koha/members/mancredit.pl,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -b -r1.1.2.1 -r1.1.2.2
--- members/mancredit.pl        24 Aug 2006 14:33:49 -0000      1.1.2.1
+++ members/mancredit.pl        26 Sep 2006 14:06:32 -0000      1.1.2.2
@@ -46,7 +46,7 @@
   print $input->redirect("/cgi-bin/koha/members/boraccount.pl?bornum=$bornum");
 } else {
        my ($template, $loggedinuser, $cookie)
-       = get_template_and_user({template_name => "mancredit.tmpl",
+       = get_template_and_user({template_name => "members/mancredit.tmpl",
                                        query => $input,
                                        type => "intranet",
                                        authnotrequired => 0,

Index: members/maninvoice.pl
===================================================================
RCS file: /sources/koha/koha/members/maninvoice.pl,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -b -r1.1.2.1 -r1.1.2.2
--- members/maninvoice.pl       24 Aug 2006 14:33:49 -0000      1.1.2.1
+++ members/maninvoice.pl       26 Sep 2006 14:06:32 -0000      1.1.2.2
@@ -46,7 +46,7 @@
   print $input->redirect("/cgi-bin/koha/members/boraccount.pl?bornum=$bornum");
 } else {
        my ($template, $loggedinuser, $cookie)
-       = get_template_and_user({template_name => "maninvoice.tmpl",
+       = get_template_and_user({template_name => "members/maninvoice.tmpl",
                                        query => $input,
                                        type => "intranet",
                                        authnotrequired => 0,

Index: koha-tmpl/intranet-tmpl/prog/en/members/mancredit.tmpl
===================================================================
RCS file: koha-tmpl/intranet-tmpl/prog/en/members/mancredit.tmpl
diff -N koha-tmpl/intranet-tmpl/prog/en/members/mancredit.tmpl
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ koha-tmpl/intranet-tmpl/prog/en/members/mancredit.tmpl      26 Sep 2006 
14:06:32 -0000      1.1.2.1
@@ -0,0 +1,25 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Patrons: Create Manual 
Credit<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<h2>Manual Credit</h2>
+<form action="/cgi-bin/koha/members/mancredit.pl" method="post">
+<input type="hidden" name="bornum" value="<!-- TMPL_VAR Name="bornum" -->" />
+
+<table>
+       <tr><th scope="row">Patron Number</th><td><!-- TMPL_VAR Name="bornum" 
--></td></tr>
+       <tr><th scope="row">Credit Type</th><td><select name="type">
+<option value="C">Credit</option>
+<option value="F">Forgiven</option>
+</select></td></tr>
+       <tr><th scope="row">Itemnumber</th><td><input type="text" 
name="itemnum" /></td></tr>
+       <tr><th scope="row">Description</th><td><input type="text" name="desc" 
size="50" /></td></tr>
+       <tr><th scope="row">Amount</th><td>$<input type="text" name="amount" 
/></td></tr>
+</table>
+
+<input type="submit" name="add" value="Add Credit" />
+</form>
+
+<form action="/cgi-bin/koha/members/boraccount.pl" method="get"><input 
type="hidden" value="<!-- TMPL_VAR Name="bornum" -->" name="bornum" /><input 
type="submit" value="Cancel" /></form>
+
+
+
+<!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->
\ No newline at end of file

Index: koha-tmpl/intranet-tmpl/prog/en/members/maninvoice.tmpl
===================================================================
RCS file: koha-tmpl/intranet-tmpl/prog/en/members/maninvoice.tmpl
diff -N koha-tmpl/intranet-tmpl/prog/en/members/maninvoice.tmpl
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ koha-tmpl/intranet-tmpl/prog/en/members/maninvoice.tmpl     26 Sep 2006 
14:06:32 -0000      1.1.2.1
@@ -0,0 +1,27 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Patrons: Create Manual 
Invoice<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<form action="/cgi-bin/koha/members/maninvoice.pl" method="post"><input 
type="hidden" name="bornum" value="<!-- TMPL_VAR Name="bornum" -->" />
+       <table>
+       <caption>Manual Invoice</caption>
+       <tr><th scope="row">Borrowernumber</th><td><!-- TMPL_VAR Name="bornum" 
--></td></tr>
+       <tr><th scope="row">Type</th><td><select name="type">
+<option value="L">Lost Item</option>
+<option value="F">Fine</option>
+<option value="A">Account Management Fee</option>
+<option value="N">New Card</option>
+<option value="M">Sundry</option>
+<option value="REF">Cash Refund</option>
+</select></td></tr>
+       <tr><th scope="row">Itemnumber</th><td><input type="text" 
name="itemnum" /></td></tr>
+       <tr><th scope="row">Description</th><td><input type="text" name="desc" 
size="50" /></td></tr>
+       <tr><th scope="row">Amount</th><td>$<input type="text" name="amount" 
/></td></tr>
+       </table>
+<input type="submit" name="add" value="Add Charge" />
+</form>
+
+<form action="/cgi-bin/koha/members/boraccount.pl" method="get"><input 
type="hidden" name="bornum" value="<!-- TMPL_VAR Name="bornum" -->" /><input 
type="submit" value="Cancel" /></form>
+
+
+
+
+<!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->

Index: koha-tmpl/intranet-tmpl/prog/en/mancredit.tmpl
===================================================================
RCS file: koha-tmpl/intranet-tmpl/prog/en/mancredit.tmpl
diff -N koha-tmpl/intranet-tmpl/prog/en/mancredit.tmpl
--- koha-tmpl/intranet-tmpl/prog/en/mancredit.tmpl      13 Jun 2006 09:54:30 
-0000      1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,25 +0,0 @@
-<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Patrons: Create Manual 
Credit<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
-
-<h2>Manual Credit</h2>
-<form action="/cgi-bin/koha/members/mancredit.pl" method="post">
-<input type="hidden" name="bornum" value="<!-- TMPL_VAR Name="bornum" -->" />
-
-<table>
-       <tr><th scope="row">Patron Number</th><td><!-- TMPL_VAR Name="bornum" 
--></td></tr>
-       <tr><th scope="row">Credit Type</th><td><select name="type">
-<option value="C">Credit</option>
-<option value="F">Forgiven</option>
-</select></td></tr>
-       <tr><th scope="row">Itemnumber</th><td><input type="text" 
name="itemnum" /></td></tr>
-       <tr><th scope="row">Description</th><td><input type="text" name="desc" 
size="50" /></td></tr>
-       <tr><th scope="row">Amount</th><td>$<input type="text" name="amount" 
/></td></tr>
-</table>
-
-<input type="submit" name="add" value="Add Credit" />
-</form>
-
-<form action="/cgi-bin/koha/members/boraccount.pl" method="get"><input 
type="hidden" value="<!-- TMPL_VAR Name="bornum" -->" name="bornum" /><input 
type="submit" value="Cancel" /></form>
-
-
-
-<!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->
\ No newline at end of file

Index: koha-tmpl/intranet-tmpl/prog/en/maninvoice.tmpl
===================================================================
RCS file: koha-tmpl/intranet-tmpl/prog/en/maninvoice.tmpl
diff -N koha-tmpl/intranet-tmpl/prog/en/maninvoice.tmpl
--- koha-tmpl/intranet-tmpl/prog/en/maninvoice.tmpl     13 Jun 2006 09:54:30 
-0000      1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,27 +0,0 @@
-<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Patrons: Create Manual 
Invoice<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
-
-<form action="/cgi-bin/koha/members/maninvoice.pl" method="post"><input 
type="hidden" name="bornum" value="<!-- TMPL_VAR Name="bornum" -->" />
-       <table>
-       <caption>Manual Invoice</caption>
-       <tr><th scope="row">Borrowernumber</th><td><!-- TMPL_VAR Name="bornum" 
--></td></tr>
-       <tr><th scope="row">Type</th><td><select name="type">
-<option value="L">Lost Item</option>
-<option value="F">Fine</option>
-<option value="A">Account Management Fee</option>
-<option value="N">New Card</option>
-<option value="M">Sundry</option>
-<option value="REF">Cash Refund</option>
-</select></td></tr>
-       <tr><th scope="row">Itemnumber</th><td><input type="text" 
name="itemnum" /></td></tr>
-       <tr><th scope="row">Description</th><td><input type="text" name="desc" 
size="50" /></td></tr>
-       <tr><th scope="row">Amount</th><td>$<input type="text" name="amount" 
/></td></tr>
-       </table>
-<input type="submit" name="add" value="Add Charge" />
-</form>
-
-<form action="/cgi-bin/koha/members/boraccount.pl" method="get"><input 
type="hidden" name="bornum" value="<!-- TMPL_VAR Name="bornum" -->" /><input 
type="submit" value="Cancel" /></form>
-
-
-
-
-<!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->




reply via email to

[Prev in Thread] Current Thread [Next in Thread]