Bug 16990: Display branch names instead of code in patron mod requests
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / mancredit.tt
1 [% USE Koha %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Patrons &rsaquo; Create manual credit</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 <script type="text/javascript">
6 //<![CDATA[
7 $(document).ready(function(){
8         $('#mancredit').preventDoubleFormSubmit();
9         $("fieldset.rows input, fieldset.rows select").addClass("noEnterSubmit");
10 });
11 //]]>
12 </script>
13 </head>
14 <body id="pat_mancredit" class="pat">
15 [% INCLUDE 'header.inc' %]
16 [% INCLUDE 'patron-search.inc' %]
17
18 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo; Manual credit</div>
19
20 <div id="doc3" class="yui-t2">
21    
22    <div id="bd">
23         <div id="yui-main">
24         <div class="yui-b">
25 [% INCLUDE 'members-toolbar.inc' %]
26
27 <!-- The manual invoice and credit buttons -->
28 <div class="statictabs">
29 <ul>
30         <li><a href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% borrowernumber %]">Account</a></li>
31         <li><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% borrowernumber %]" >Pay fines</a></li>
32         <li><a href="/cgi-bin/koha/members/maninvoice.pl?borrowernumber=[% borrowernumber %]" >Create manual invoice</a></li>
33     <li class="active"><a href="/cgi-bin/koha/members/mancredit.pl?borrowernumber=[% borrowernumber %]" >Create manual credit</a></li>
34 </ul>
35 <div class="tabs-container">
36
37 <form action="/cgi-bin/koha/members/mancredit.pl" method="post" id="mancredit">
38 <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" />
39
40 <fieldset class="rows">
41 <legend>Manual credit</legend><ol>
42         <li><label for="type">Credit type: </label><select name="type" id="type">
43 <option value="C">Credit</option>
44 <option value="FOR">Forgiven</option>
45 </select></li>
46         <li><label for="barcode">Barcode: </label><input type="text" name="barcode" id="barcode" /></li>
47         <li><label for="desc">Description: </label><input type="text" name="desc" size="50" id="desc" /></li>
48     <li><label for="note">Note: </label><input type="text" name="note" size="50" id="note" /></li>
49     <li><label for="amount">Amount: </label><input type="number" name="amount" id="amount" required="required" value="" step="any" min="0" /> Example: 5.00</li>
50 </ol></fieldset>
51
52 <fieldset class="action"><input type="submit" name="add" value="Add credit" /> <a class="cancel" href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% borrowernumber %]">Cancel</a></fieldset>
53 </form>
54
55 </div></div>
56
57 </div>
58 </div>
59
60 <div class="yui-b">
61 [% INCLUDE 'circ-menu.inc' %]
62 </div>
63 </div>
64 [% INCLUDE 'intranet-bottom.inc' %]