[Koha-cvs] koha/koha-tmpl/intranet-tmpl/prog/en/members bo...

Bruno Toumi btoumi at ouestprovence.fr
Tue Jun 13 11:54:31 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Bruno Toumi <btoumi>	06/06/13 09:54:30

Modified files:
	koha-tmpl/intranet-tmpl/prog/en/members: boraccount.tmpl 
	                                         pay.tmpl 
	                                         readingrec.tmpl 
	koha-tmpl/intranet-tmpl/prog/en: mancredit.tmpl maninvoice.tmpl 

Log message:
	borraccount.tmpl  , mancredit.tmpl , maininvoice.tmpl : bug fix modify wrong url
	pay.tmpl , readingrec.tmpl : add back button 

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/members/boraccount.tmpl?cvsroot=koha&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/members/pay.tmpl?cvsroot=koha&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/members/readingrec.tmpl?cvsroot=koha&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/mancredit.tmpl?cvsroot=koha&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/maninvoice.tmpl?cvsroot=koha&r1=1.1&r2=1.2

Patches:
Index: boraccount.tmpl
===================================================================
RCS file: boraccount.tmpl
diff -N boraccount.tmpl
--- boraccount.tmpl	6 Aug 2005 20:19:56 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,40 +0,0 @@
-<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Account for  <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --><!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
-
-<!-- The table with the account items -->
-
-<table>
-<caption>Account for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></caption>
-  <tr>
-  	<th>Date</th>
-    <th>Description of Charges</th>
-    <th>Amount</th>
-    <th>Still Owed</th>
-  </tr>
-
-  <!-- TMPL_LOOP NAME="accounts" -->
-
-   <!-- TMPL_IF NAME="toggle" --> <tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
-      <td><!-- TMPL_VAR NAME="date" --></td>
-      <td><!-- TMPL_VAR NAME="description" --><!-- TMPL_IF NAME="printtitle" --> <!-- TMPL_VAR NAME="title" --><!-- /TMPL_IF --></td>
-      <!-- TMPL_IF NAME="amountcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="amount" --></td>
-      <!-- TMPL_IF NAME="amountoutstandingcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="amountoutstanding" --></td>
-    </tr>
-
-  <!-- /TMPL_LOOP -->
-<tfoot>
-  <tr>
-    <td colspan="3">Total Due</td>
-    <!-- TMPL_IF NAME="totalcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="total" --></td>
-  </tr>
-  </tfoot>
-</table>
-<!-- The manual invoice and credit buttons -->
-
-<form action="/cgi-bin/koha/maninvoice.pl" method="get"><input type="hidden" name="bornum" value="<!-- TMPL_VAR NAME="bornum" -->" /><input type="submit" value="Create Manual Invoice" /></form>
-
-<form action="/cgi-bin/koha/mancredit.pl" method="get"> <input type="hidden" name="bornum" value="<!-- TMPL_VAR NAME="bornum" -->" /> <input type="submit" value="Create Manual Credit" /></form>
-
-<form action="/cgi-bin/koha/members/moremember.pl" method="get"><input type="hidden" name="bornum" value="<!-- TMPL_VAR NAME="bornum" -->" /> <input type="submit" value="Return to Patron Record" /></form>
-
-
-<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->



Index: mancredit.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/mancredit.tmpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- mancredit.tmpl	6 Aug 2005 20:19:56 -0000	1.1
+++ mancredit.tmpl	13 Jun 2006 09:54:30 -0000	1.2
@@ -1,7 +1,7 @@
 <!-- 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/mancredit.pl" method="post">
+<form action="/cgi-bin/koha/members/mancredit.pl" method="post">
 <input type="hidden" name="bornum" value="<!-- TMPL_VAR Name="bornum" -->" />
 
 <table>
@@ -18,7 +18,7 @@
 <input type="submit" name="add" value="Add Credit" />
 </form>
 
-<form action="/cgi-bin/koha/boraccount.pl" method="get"><input type="hidden" value="<!-- TMPL_VAR Name="bornum" -->" name="bornum" /><input type="submit" value="Cancel" /></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>
 
 
 

Index: maninvoice.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/maninvoice.tmpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- maninvoice.tmpl	6 Aug 2005 20:19:56 -0000	1.1
+++ maninvoice.tmpl	13 Jun 2006 09:54:30 -0000	1.2
@@ -1,6 +1,6 @@
 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Patrons: Create Manual Invoice<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
 
-<form action="/cgi-bin/koha/maninvoice.pl" method="post"><input type="hidden" name="bornum" value="<!-- TMPL_VAR Name="bornum" -->" />
+<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>
@@ -19,7 +19,7 @@
 <input type="submit" name="add" value="Add Charge" />
 </form>
 
-<form action="/cgi-bin/koha/boraccount.pl" method="get"><input type="hidden" name="bornum" value="<!-- TMPL_VAR Name="bornum" -->" /><input type="submit" value="Cancel" /></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>
 
 
 





More information about the Koha-cvs mailing list