3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA 02111-1307 USA
31 use C4
::Dates qw
/format_date/;
33 use C4
::Branch
; # GetBranches
38 if (C4
::Context
->preference('BakerTaylorEnabled')) {
39 require C4
::External
::BakerTaylor
;
40 import C4
::External
::BakerTaylor
qw(&image_url &link_url);
44 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
46 template_name
=> "opac-user.tmpl",
50 flagsrequired
=> { borrow
=> 1 },
55 my $OPACDisplayRequestPriority = (C4
::Context
->preference("OPACDisplayRequestPriority")) ?
1 : 0;
56 my $patronupdate = $query->param('patronupdate');
58 # get borrower information ....
59 my ( $borr ) = GetMemberDetails
( $borrowernumber );
61 for (qw(dateenrolled dateexpiry dateofbirth)) {
62 ($borr->{$_}) and $borr->{$_} = format_date
($borr->{$_});
64 $borr->{'ethnicity'} = fixEthnicity
( $borr->{'ethnicity'} );
66 if ( $borr->{'debarred'} || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
67 $borr->{'flagged'} = 1;
70 if ( $borr->{'amountoutstanding'} > 5 ) {
71 $borr->{'amountoverfive'} = 1;
73 if ( 5 >= $borr->{'amountoutstanding'} && $borr->{'amountoutstanding'} > 0 ) {
74 $borr->{'amountoverzero'} = 1;
77 if ( $borr->{'amountoutstanding'} > C4
::Context
->preference( 'OPACFineNoRenewals' ) ) {
78 $borr->{'flagged'} = 1;
80 renewal_blocked_fines
=> sprintf( "%.02f", C4
::Context
->preference( 'OPACFineNoRenewals' ) ),
84 if ( $borr->{'amountoutstanding'} < 0 ) {
85 $borr->{'amountlessthanzero'} = 1;
86 $borr->{'amountoutstanding'} = -1 * ( $borr->{'amountoutstanding'} );
89 $borr->{'amountoutstanding'} = sprintf "%.02f", $borr->{'amountoutstanding'};
94 $template->param( BORROWER_INFO
=> \
@bordat,
95 borrowernumber
=> $borrowernumber,
96 patron_flagged
=> $borr->{flagged
},
99 #get issued items ....
103 my $overdues_count = 0;
106 my $itemtypes = GetItemTypes
();
107 my ($issues) = GetPendingIssues
($borrowernumber);
109 foreach my $issue ( sort sort { $b->{'date_due'} cmp $a->{'date_due'} } @
$issues ) {
111 my ( $restype, $res ) = CheckReserves
( $issue->{'itemnumber'} );
113 $issue->{'reserved'} = 1;
116 my ( $total , $accts, $numaccts) = GetMemberAccountRecords
( $borrowernumber );
118 foreach my $ac (@
$accts) {
119 if ( $ac->{'itemnumber'} == $issue->{'itemnumber'} ) {
120 $charges += $ac->{'amountoutstanding'}
121 if $ac->{'accounttype'} eq 'F';
122 $charges += $ac->{'amountoutstanding'}
123 if $ac->{'accounttype'} eq 'L';
126 $issue->{'charges'} = $charges;
128 # get publictype for icon
130 my $publictype = $issue->{'publictype'};
131 $issue->{$publictype} = 1;
133 # check if item is renewable
134 my ($status,$renewerror) = CanBookBeRenewed
( $borrowernumber, $issue->{'itemnumber'} );
135 ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount
($borrowernumber, $issue->{'itemnumber'});
136 $issue->{'status'} = $status && C4
::Context
->preference("OpacRenewalAllowed");
137 $issue->{'too_many'} = 1 if $renewerror and $renewerror eq 'too_many';
138 $issue->{'on_reserve'} = 1 if $renewerror and $renewerror eq 'on_reserve';
140 if ( $issue->{'overdue'} ) {
141 push @overdues, $issue;
143 $issue->{'overdue'} = 1;
146 $issue->{'issued'} = 1;
149 my $itemtype = $issue->{'itemtype'};
151 $issue->{'imageurl'} = getitemtypeimagelocation
( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
152 $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
154 $issue->{date_due
} = format_date
($issue->{date_due
});
155 push @issuedat, $issue;
158 my $isbn = GetNormalizedISBN
($issue->{'isbn'});
159 $issue->{normalized_isbn
} = $isbn;
162 $template->param( ISSUES
=> \
@issuedat );
163 $template->param( issues_count
=> $count );
165 $template->param( OVERDUES
=> \
@overdues );
166 $template->param( overdues_count
=> $overdues_count );
169 my $branches = GetBranches
();
171 for my $branch_hash (sort keys %$branches ) {
172 my $selected=(C4
::Context
->userenv && ($branch_hash eq C4
::Context
->userenv->{branch
})) if (C4
::Context
->preference('SearchMyLibraryFirst'));
175 value
=> "branch: $branch_hash",
176 branchname
=> $branches->{$branch_hash}->{'branchname'},
177 selected
=> $selected
180 $template->param( branchloop
=> \
@branch_loop );
182 # now the reserved items....
183 my @reserves = GetReservesFromBorrowernumber
( $borrowernumber );
184 foreach my $res (@reserves) {
185 $res->{'reservedate'} = format_date
( $res->{'reservedate'} );
186 my $publictype = $res->{'publictype'};
187 $res->{$publictype} = 1;
188 $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
189 $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
190 my $biblioData = GetBiblioData
($res->{'biblionumber'});
191 $res->{'reserves_title'} = $biblioData->{'title'};
192 if ($OPACDisplayRequestPriority) {
193 $res->{'priority'} = '' if $res->{'priority'} eq '0';
198 # warn Dumper(@reserves);
200 $template->param( RESERVES
=> \
@reserves );
201 $template->param( reserves_count
=> $#reserves+1 );
202 $template->param( showpriority
=>1 ) if $OPACDisplayRequestPriority;
206 foreach my $res (@reserves) {
207 if ( $res->{'itemnumber'} ) {
208 my $item = GetItem
( $res->{'itemnumber'});
209 $res->{'holdingbranch'} =
210 $branches->{ $item->{'holdingbranch'} }->{'branchname'};
211 $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
212 # get document reserve status
213 my $biblioData = GetBiblioData
($res->{'biblionumber'});
214 $res->{'waiting_title'} = $biblioData->{'title'};
215 if ( ( $res->{'found'} eq 'W' ) ) {
216 my $item = $res->{'itemnumber'};
217 $item = GetBiblioFromItemNumber
($item,undef);
219 $res->{'holdingbranch'}=$item->{'holdingbranch'};
220 $res->{'biblionumber'}=$item->{'biblionumber'};
221 $res->{'barcodenumber'} = $item->{'barcode'};
222 $res->{'wbrcode'} = $res->{'branchcode'};
223 $res->{'itemnumber'} = $res->{'itemnumber'};
224 $res->{'wbrname'} = $branches->{$res->{'branchcode'}}->{'branchname'};
225 if($res->{'holdingbranch'} eq $res->{'wbrcode'}){
226 $res->{'atdestination'} = 1;
228 # set found to 1 if reserve is waiting for patron pickup
229 $res->{'found'} = 1 if $res->{'found'} eq 'W';
231 my ($transfertwhen, $transfertfrom, $transfertto) = GetTransfers
( $res->{'itemnumber'} );
232 if ($transfertwhen) {
233 $res->{intransit
} = 1;
234 $res->{datesent
} = format_date
($transfertwhen);
235 $res->{frombranch
} = GetBranchName
($transfertfrom);
242 #$res->{'cancelable'} = 1 if ($res->{'wait'} && $res->{'atdestination'} && $res->{'found'} ne "1");
243 $res->{'cancelable'} = 1 if ($res->{wait} and not $res->{found
}) or (not $res->{wait} and not $res->{intransit
});
247 $template->param( WAITING
=> \
@waiting );
249 # current alert subscriptions
250 my $alerts = getalert
($borrowernumber);
251 foreach ( @
$alerts ) {
252 $_->{ $_->{type
} } = 1;
253 $_->{relatedto
} = findrelatedto
( $_->{type
}, $_->{externalid
} );
256 if (C4
::Context
->preference('BakerTaylorEnabled')) {
258 BakerTaylorEnabled
=> 1,
259 BakerTaylorImageURL
=> &image_url
(),
260 BakerTaylorLinkURL
=> &link_url
(),
261 BakerTaylorBookstoreURL
=> C4
::Context
->preference('BakerTaylorBookstoreURL'),
265 if (C4
::Context
->preference("OPACAmazonCoverImages") or
266 C4
::Context
->preference("GoogleJackets") or
267 C4
::Context
->preference("BakerTaylorEnabled") or
268 C4
::Context
->preference("SyndeticsCoverImages")) {
269 $template->param(JacketImages
=>1);
272 if ( GetMessagesCount
( $borrowernumber, 'B' ) ) {
273 $template->param( bor_messages
=> 1 );
276 if ( $borr->{'opacnote'} ) {
279 opacnote
=> $borr->{'opacnote'},
284 bor_messages_loop
=> GetMessages
( $borrowernumber, 'B', 'NONE' ),
285 waiting_count
=> $wcount,
286 textmessaging
=> $borr->{textmessaging
},
287 patronupdate
=> $patronupdate,
288 OpacRenewalAllowed
=> C4
::Context
->preference("OpacRenewalAllowed"),
290 dateformat
=> C4
::Context
->preference("dateformat"),
293 output_html_with_http_headers
$query, $cookie, $template->output;