Lines 2-7
Link Here
|
2 |
<title>Koha › Administration › Circulation and fine rules</title> |
2 |
<title>Koha › Administration › Circulation and fine rules</title> |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
[% INCLUDE 'calendar.inc' %] |
4 |
[% INCLUDE 'calendar.inc' %] |
|
|
5 |
[% USE Branches %] |
5 |
<script type="text/javascript"> |
6 |
<script type="text/javascript"> |
6 |
//<![CDATA[ |
7 |
//<![CDATA[ |
7 |
|
8 |
|
Lines 557-562
for="tobranch"><strong>Clone these rules to:</strong></label> <input type="hidde
Link Here
|
557 |
</form> |
558 |
</form> |
558 |
</div> |
559 |
</div> |
559 |
[% END %] |
560 |
[% END %] |
|
|
561 |
|
562 |
<div id="refund-lost-item-fee-on-return" class="container"> |
563 |
<h3>Lost item fee refund on return policy</h3> |
564 |
<p>Specify the default policy for lost item fees on return. |
565 |
</p> |
566 |
<form method="post" action="/cgi-bin/koha/admin/smart-rules.pl"> |
567 |
<input type="hidden" name="op" value="add-refund-lost-item-fee-rule" /> |
568 |
<table> |
569 |
<tr> |
570 |
<th>Library</th> |
571 |
<th>Refund lost item fee</th> |
572 |
<th> </th> |
573 |
</tr> |
574 |
[% FOREACH refundLostItemFeeRule IN refundLostItemFeeRules %] |
575 |
<tr> |
576 |
<td> |
577 |
[% IF refundLostItemFeeRule.branchcode == '*' %] |
578 |
All |
579 |
[% ELSE %] |
580 |
[% Branches.GetName(refundLostItemFeeRule.branchcode) %] |
581 |
[% END %] |
582 |
</td> |
583 |
<td> |
584 |
[% IF refundLostItemFeeRule.refund %] |
585 |
Yes |
586 |
[% ELSE %] |
587 |
No |
588 |
[% END %] |
589 |
</td> |
590 |
<td class="actions"> |
591 |
[% IF refundLostItemFeeRule.branchcode != '*' %] |
592 |
<a class="btn btn-mini delete" href="/cgi-bin/koha/admin/smart-rules.pl?op=del-refund-lost-item-fee-rule&ref_branchcode=[% refundLostItemFeeRule.branchcode %]"><i class="fa fa-trash"></i> Delete</a> |
593 |
[% END %] |
594 |
</td> |
595 |
</tr> |
596 |
[% END %] |
597 |
<tr> |
598 |
<td> |
599 |
<select name="ref_branchcode"> |
600 |
<option value='*'>All</option> |
601 |
[% FOREACH branch IN Branches.all %] |
602 |
<option value="[% branch.branchcode %]">[% branch.branchname %]</option> |
603 |
[% END %] |
604 |
</select> |
605 |
</td> |
606 |
<td> |
607 |
<select name="ref_refund"> |
608 |
<option value="0">No</option> |
609 |
<option value="1">Yes</option> |
610 |
</select> |
611 |
</td> |
612 |
<td class="actions"><button type="submit" class="btn btn-mini"><i class="fa fa-plus"></i> Add</td> |
613 |
</tr> |
614 |
</table> |
615 |
</form> |
616 |
</div> |
617 |
|
560 |
<div id="holds-policy-by-item-type" class="container"> |
618 |
<div id="holds-policy-by-item-type" class="container"> |
561 |
<h3>[% IF humanbranch %]Holds policy by item type for [% humanbranch %][% ELSE %]Default holds policy by item type[% END %]</h3> |
619 |
<h3>[% IF humanbranch %]Holds policy by item type for [% humanbranch %][% ELSE %]Default holds policy by item type[% END %]</h3> |
562 |
<p> |
620 |
<p> |
563 |
- |
|
|