first go at moving templates to a modules/ dir
[koha_ffzg] / koha-tmpl / intranet-tmpl / prog / en / modules / members / maninvoice.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Borrowers &rsaquo; Create Manual Invoice</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-members.inc" -->
7
8 <!-- TMPL_IF NAME="ERROR" -->
9 <!-- TMPL_IF NAME="ITEMNUMBER" -->
10   ERROR an invalid itemnumber was entered, please hit back and try again
11 <!-- /TMPL_IF -->
12 <!-- TMPL_ELSE -->
13 <form action="/cgi-bin/koha/members/maninvoice.pl" method="post"><input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR Name="borrowernumber" -->" />
14         <table>
15         <caption>Manual Invoice</caption>
16         <tr><th scope="row">Borrowernumber</th><td><!-- TMPL_VAR Name="borrowernumber" --></td></tr>
17         <tr><th scope="row">Type</th><td><select name="type">
18 <option value="L">Lost Item</option>
19 <option value="F">Fine</option>
20 <option value="A">Account Management Fee</option>
21 <option value="N">New Card</option>
22 <option value="M">Sundry</option>
23 <option value="REF">Cash Refund</option>
24 </select></td></tr>
25         <tr><th scope="row">Itemnumber</th><td><input type="text" name="itemnum" /></td></tr>
26         <tr><th scope="row">Description</th><td><input type="text" name="desc" size="50" /></td></tr>
27         <tr><th scope="row">Amount</th><td>$<input type="text" name="amount" /></td></tr>
28         </table>
29 <input type="submit" name="add" value="Add Charge" />
30 </form>
31
32 <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>
33
34 <!-- /TMPL_IF -->
35
36
37 <!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->