View | Details | Raw Unified | Return to bug 2780
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt (-4 / +4 lines)
Lines 16-22 Link Here
16
16
17
<div id="main">
17
<div id="main">
18
18
19
<h3><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% cardnumber %]">Account Summary: [% firstname %] [% surname %] ([% cardnumber %])</a></h3>
19
<h3><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% cardnumber %]">Account summary: [% firstname %] [% surname %] ([% cardnumber %])</a></h3>
20
20
21
<ul><li>[% address %]<br />[% address2 %]</li><li>[% city %], [% zipcode %]</li>
21
<ul><li>[% address %]<br />[% address2 %]</li><li>[% city %], [% zipcode %]</li>
22
<li>[% IF ( phone ) %][% phone %][% ELSE %](no phone number on file)[% END %]</li>
22
<li>[% IF ( phone ) %][% phone %][% ELSE %](no phone number on file)[% END %]</li>
Lines 26-37 Link Here
26
26
27
[% IF ( issueloop ) %]
27
[% IF ( issueloop ) %]
28
<table>
28
<table>
29
	<caption>Items Checked Out</caption>
29
	<caption>Items checked out</caption>
30
	<tr>
30
	<tr>
31
		<th>Title</th>
31
		<th>Title</th>
32
		<th>Author</th>
32
		<th>Author</th>
33
		<th>Item Type</th>
33
		<th>Item type</th>
34
		<th>Date Due</th>
34
		<th>Date due</th>
35
		<th>Charge</th>
35
		<th>Charge</th>
36
		<th>Price</th>
36
		<th>Price</th>
37
		<th>Status</th>
37
		<th>Status</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-receipt.tt (-2 / +2 lines)
Lines 23-29 Checked out to [% firstname %] [% surname %] <br /> Link Here
23
[% todaysdate %]<br />
23
[% todaysdate %]<br />
24
24
25
[% IF ( quickslip ) %]
25
[% IF ( quickslip ) %]
26
<h4>Checked Out Today</h4>
26
<h4>Checked uut today</h4>
27
[% FOREACH issueloo IN issueloop %]
27
[% FOREACH issueloo IN issueloop %]
28
[% IF ( issueloo.red ) %][% ELSE %]
28
[% IF ( issueloo.red ) %][% ELSE %]
29
[% IF ( issueloo.today ) %]
29
[% IF ( issueloo.today ) %]
Lines 35-41 Date due: [% issueloo.date_due %]<br /></p> Link Here
35
    [% END %]
35
    [% END %]
36
36
37
[% ELSE %]
37
[% ELSE %]
38
<h4>Checked Out</h4>
38
<h4>Checked out</h4>
39
[% FOREACH issueloo IN issueloop %]
39
[% FOREACH issueloo IN issueloop %]
40
[% IF ( issueloo.red ) %][% ELSE %]
40
[% IF ( issueloo.red ) %][% ELSE %]
41
<p><a href="/cgi-bin/koha/catalogue/detail.pl?item=[% issueloo.itemnumber %]&amp;biblionumber=[% issueloo.biblionumber %]&amp;bi=[% issueloo.biblioitemnumber %]">[% issueloo.title |html %]</a><br />
41
<p><a href="/cgi-bin/koha/catalogue/detail.pl?item=[% issueloo.itemnumber %]&amp;biblionumber=[% issueloo.biblionumber %]&amp;bi=[% issueloo.biblioitemnumber %]">[% issueloo.title |html %]</a><br />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (-5 / +5 lines)
Lines 18-24 Link Here
18
[% INCLUDE 'header.inc' %]
18
[% INCLUDE 'header.inc' %]
19
[% INCLUDE 'patron-search.inc' %]
19
[% INCLUDE 'patron-search.inc' %]
20
20
21
<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; Pay Fines for [% borrower.firstname %] [% borrower.surname %]</div>
21
<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; Pay fines for [% borrower.firstname %] [% borrower.surname %]</div>
22
22
23
<div id="doc3" class="yui-t2">
23
<div id="doc3" class="yui-t2">
24
   
24
   
Lines 44-57 Link Here
44
<table>
44
<table>
45
<thead>
45
<thead>
46
<tr>
46
<tr>
47
	<th>Fines &amp; Charges</th>
47
	<th>Fines &amp; charges</th>
48
    <th>Sel</th>
48
    <th>Sel</th>
49
	<th>Description</th>
49
	<th>Description</th>
50
	<th>Account Type</th>
50
	<th>Account type</th>
51
	<th>Notify id</th>
51
	<th>Notify id</th>
52
	<th>Level</th>
52
	<th>Level</th>
53
	<th>Amount</th>
53
	<th>Amount</th>
54
	<th>Amount Outstanding</th>
54
	<th>Amount outstanding</th>
55
</tr>
55
</tr>
56
</thead>
56
</thead>
57
<tfoot>
57
<tfoot>
Lines 96-102 Link Here
96
[% IF ( account_grp.total ) %]
96
[% IF ( account_grp.total ) %]
97
<tr>
97
<tr>
98
98
99
    <td class="total" colspan="7">Sub Total:</td>
99
    <td class="total" colspan="7">Sub total:</td>
100
    <td>[% account_grp.total | format('%.2f') %]</td>
100
    <td>[% account_grp.total | format('%.2f') %]</td>
101
</tr>
101
</tr>
102
[% END %]
102
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt (-6 / +6 lines)
Lines 1-5 Link Here
1
[% INCLUDE 'doc-head-open.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Patrons &rsaquo; Collect Fine Payment for  [% borrower.firstname %] [% borrower.surname %]</title>
2
<title>Koha &rsaquo; Patrons &rsaquo; Collect fine payment for  [% borrower.firstname %] [% borrower.surname %]</title>
3
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
4
<script type= "text/javascript">
4
<script type= "text/javascript">
5
//<![CDATA[
5
//<![CDATA[
Lines 57-63 function moneyFormat(textObj) { Link Here
57
<body id="pat_paycollect" class="pat">
57
<body id="pat_paycollect" class="pat">
58
[% INCLUDE 'header.inc' %]
58
[% INCLUDE 'header.inc' %]
59
[% INCLUDE 'patron-search.inc' %]
59
[% INCLUDE 'patron-search.inc' %]
60
<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; <a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% borrower.borrowernumber %]">Pay Fines for [% borrower.firstname %] [% borrower.surname %]</a> &rsaquo; [% IF ( pay_individual ) %]Pay an individual fine[% ELSIF ( writeoff_individual ) %]Write off an individual fine[% ELSE %][% IF ( selected_accts ) %]Pay an amount toward selected fines[% ELSE %]Pay an amount toward all fines[% END %][% END %]</div>
60
<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; <a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% borrower.borrowernumber %]">Pay fines for [% borrower.firstname %] [% borrower.surname %]</a> &rsaquo; [% IF ( pay_individual ) %]Pay an individual fine[% ELSIF ( writeoff_individual ) %]Write off an individual fine[% ELSE %][% IF ( selected_accts ) %]Pay an amount toward selected fines[% ELSE %]Pay an amount toward all fines[% END %][% END %]</div>
61
61
62
<div id="doc3" class="yui-t2">
62
<div id="doc3" class="yui-t2">
63
63
Lines 109-119 function moneyFormat(textObj) { Link Here
109
    <table>
109
    <table>
110
    <thead><tr>
110
    <thead><tr>
111
            <th>Description</th>
111
            <th>Description</th>
112
            <th>Account Type</th>
112
            <th>Account type</th>
113
            <th>Notify id</th>
113
            <th>Notify id</th>
114
            <th>Level</th>
114
            <th>Level</th>
115
            <th>Amount</th>
115
            <th>Amount</th>
116
            <th>Amount Outstanding</th>
116
            <th>Amount outstanding</th>
117
        </tr></thead>
117
        </tr></thead>
118
    <tfoot>
118
    <tfoot>
119
        <td colspan="5">Total amount payable:</td><td>[% amountoutstanding | format('%.2f') %]</td>
119
        <td colspan="5">Total amount payable:</td><td>[% amountoutstanding | format('%.2f') %]</td>
Lines 161-171 function moneyFormat(textObj) { Link Here
161
    <table>
161
    <table>
162
    <thead><tr>
162
    <thead><tr>
163
            <th>Description</th>
163
            <th>Description</th>
164
            <th>Account Type</th>
164
            <th>Account type</th>
165
            <th>Notify id</th>
165
            <th>Notify id</th>
166
            <th>Level</th>
166
            <th>Level</th>
167
            <th>Amount</th>
167
            <th>Amount</th>
168
            <th>Amount Outstanding</th>
168
            <th>Amount outstanding</th>
169
        </tr></thead>
169
        </tr></thead>
170
    <tfoot><td colspan="5">Total amount to be written off:</td><td>[% amountoutstanding | format('%.2f') %]</td></tfoot>
170
    <tfoot><td colspan="5">Total amount to be written off:</td><td>[% amountoutstanding | format('%.2f') %]</td></tfoot>
171
    <tbody><tr>
171
    <tbody><tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/printfeercpt.tt (-2 / +2 lines)
Lines 24-30 Link Here
24
[% END %]
24
[% END %]
25
 <tr>
25
 <tr>
26
	<th colspan=3 class="centerednames">
26
	<th colspan=3 class="centerednames">
27
		<h2><u>Fee Receipt</u></h2>
27
		<h2><u>Fee receipt</u></h2>
28
	</th>
28
	</th>
29
 </tr>
29
 </tr>
30
 <tr>
30
 <tr>
Lines 35-41 Link Here
35
 <tr>
35
 <tr>
36
	<th colspan=3 >
36
	<th colspan=3 >
37
		Received with thanks from  [% firstname %] [% surname %] <br />
37
		Received with thanks from  [% firstname %] [% surname %] <br />
38
		Card Number : [% cardnumber %]<br />
38
		Card number : [% cardnumber %]<br />
39
	</th>
39
	</th>
40
 </tr>
40
 </tr>
41
  <tr>
41
  <tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/printinvoice.tt (-2 / +2 lines)
Lines 34-41 Link Here
34
  </tr>
34
  </tr>
35
  <tr>
35
  <tr>
36
	<th colspan=3 >
36
	<th colspan=3 >
37
		Bill To: [% firstname %] [% surname %] <br />
37
		Bill to: [% firstname %] [% surname %] <br />
38
		Card Number: [% cardnumber %]<br />
38
		Card number: [% cardnumber %]<br />
39
	</th>
39
	</th>
40
  </tr>
40
  </tr>
41
  <tr>
41
  <tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt (-7 / +6 lines)
Lines 17-23 Link Here
17
[% INCLUDE 'header.inc' %]
17
[% INCLUDE 'header.inc' %]
18
[% INCLUDE 'patron-search.inc' %]
18
[% INCLUDE 'patron-search.inc' %]
19
19
20
<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; Circulation History for [% INCLUDE 'patron-title.inc' %]</div>
20
<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; Circulation history for [% INCLUDE 'patron-title.inc' %]</div>
21
21
22
<div id="doc3" class="yui-t2">
22
<div id="doc3" class="yui-t2">
23
   
23
   
Lines 25-31 Link Here
25
	<div id="yui-main">
25
	<div id="yui-main">
26
	<div class="yui-b">
26
	<div class="yui-b">
27
[% INCLUDE 'circ-toolbar.inc' %]
27
[% INCLUDE 'circ-toolbar.inc' %]
28
<h1>Circulation History</h1>
28
<h1>Circulation history</h1>
29
[% IF ( loop_reading ) %]
29
[% IF ( loop_reading ) %]
30
<form action="/cgi-bin/koha/members/readingrec.pl" method="get"><input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" /></form>
30
<form action="/cgi-bin/koha/members/readingrec.pl" method="get"><input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" /></form>
31
31
Lines 38-50 Link Here
38
    <th>Date</th>
38
    <th>Date</th>
39
	<th>Title</th>
39
	<th>Title</th>
40
	<th>Author</th>
40
	<th>Author</th>
41
	<th>Call No.</th>
41
	<th>Call no.</th>
42
	<th>Barcode</th>
42
	<th>Barcode</th>
43
	<th>Number of Renewals</th>
43
	<th>Number of renewals</th>
44
	<th>Checked out on</th>
44
	<th>Checked out on</th>
45
	<th>Checked out from</th>
45
	<th>Checked out from</th>
46
	<th>Date Due</th>
46
	<th>Date due</th>
47
	<th>Return Date</th>
47
	<th>Return date</th>
48
</thead>
48
</thead>
49
[% FOREACH loop_readin IN loop_reading %]
49
[% FOREACH loop_readin IN loop_reading %]
50
    [% IF ( loop_readin.returndate ) %]<tr>[% ELSE %]<tr class="onissue">[% END %]
50
    [% IF ( loop_readin.returndate ) %]<tr>[% ELSE %]<tr class="onissue">[% END %]
51
- 

Return to bug 2780