Koha/koha-tmpl/intranet-tmpl/prog/en/members/maninvoice.tmpl
kados 5f4542992a This is a minor change, but affects all templates:
previously, it wasn't possible to insert anything into the <head> on
an individual template unless it was the title of the page. Now, the
structure is a bit more flexible to allow additional head elements to
be included.
2007-03-11 21:08:11 +00:00

33 lines
1.4 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Borrowers &rsaquo; Create Manual Invoice</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- TMPL_INCLUDE NAME="menus.inc" -->
<!-- TMPL_INCLUDE NAME="menu-members.inc" -->
<form action="/cgi-bin/koha/members/maninvoice.pl" method="post"><input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR Name="borrowernumber" -->" />
<table>
<caption>Manual Invoice</caption>
<tr><th scope="row">Borrowernumber</th><td><!-- TMPL_VAR Name="borrowernumber" --></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="borrowernumber" value="<!-- TMPL_VAR Name="borrowernumber" -->" /><input type="submit" value="Cancel" /></form>
<!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->