Koha/koha-tmpl/intranet-tmpl/prog/en/modules/members/discharge.tt
Jonathan Druart bde685fa92 Bug 15542: Always display the patron's info the same way.
The patron's information displayed in the member module
(includes/circ-menu.inc and includes/member-display-address-style-*.inc)
are not always displayed the same way.
Sometimes the streetnumber is missing, sometimes it's the streettype.
Sometimes the streettype is after the address, sometimes before...

Test plan:
Go on a patron detail page, and open all the tabs on the left (Check
out, Fines, Notices, etc.)
Without this patch, the patron's info displayed will differ from one page to
another.
With this patch, they will be displayed the same everywhere.

Followed test plan, works as expected. (Tested both patches together.)
Signed-off-by: Marc Véron <veron@veron.ch>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
2016-01-23 19:15:08 +00:00

72 lines
2.1 KiB
Text

[% USE KohaDates %]
[% USE AuthorisedValues %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Patrons &rsaquo; [% IF (unknowuser) %]Patron does not exist[% ELSE %]Discharge for [% firstname %] [% surname %] ([% cardnumber %])[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="discharge" class="discharge">
[% INCLUDE 'header.inc' %]
[% INCLUDE 'patron-search.inc' %]
<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; [% IF (unknowuser) %]Patron does not exist[% ELSE %]Discharge for [% firstname %] [% surname %] ([% cardnumber %])[% END %]
</div>
<div id="doc3" class="yui-t1">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<div class="yui-g">
<h3>Discharge</h3>
[% FOR message IN messages %]
<div class="dialog [% message.type %]">
[% IF message.code == "unable_to_generate_pdf" %]
An error occurs when generating the pdf file.
Please contact the administrator to resolve this problem.
[% END %]
</div>
[% END %]
[% UNLESS can_be_discharged %]
<p>Cannot edit discharge: borrower has issues.</p>
[% ELSE %]
[% IF has_reserves %]
<p>Borrower has reserves: they will be canceled if the discharge is generated.</p>
[% END %]
<form method="post">
<input type="submit" value="Generate discharge" name="discharge" />
<input type="hidden" value="[% borrowernumber %]" name="borrowernumber" />
</form>
[% END %]
[% IF validated_discharges %]
<h2>Already validated discharges</h2>
<table>
<thead>
<tr>
<th>Requested</th>
<th>Validated</th>
</tr>
</thead>
<tbody>
[% FOR d IN validated_discharges %]
<tr>
<td>[% d.needed | $KohaDates with_hours = 1 %]</td>
<td>[% d.validated | $KohaDates with_hours = 1 %]</td>
</tr>
[% END %]
</tbody>
</table>
[% END %]
</div>
</div>
</div>
<div class="yui-b">
[% INCLUDE 'circ-menu.inc' %]
</div>
</div>
[% INCLUDE 'intranet-bottom.inc' %]