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