Bug 17578: GetMemberDetails - Remove reservefee
Same as other patches, reservefee is only used in opac-reserve.pl Test plan; Set reserve fee for a patron category Place a hold at the OPAC with one of these patrons. You must get a message about the reserve fee. Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
5a0a2ce584
commit
43dda64381
2 changed files with 3 additions and 4 deletions
|
@ -146,7 +146,6 @@ sub GetMemberDetails {
|
||||||
SELECT borrowers.*,
|
SELECT borrowers.*,
|
||||||
category_type,
|
category_type,
|
||||||
categories.description,
|
categories.description,
|
||||||
reservefee,
|
|
||||||
enrolmentperiod
|
enrolmentperiod
|
||||||
FROM borrowers
|
FROM borrowers
|
||||||
LEFT JOIN categories ON borrowers.categorycode=categories.categorycode
|
LEFT JOIN categories ON borrowers.categorycode=categories.categorycode
|
||||||
|
@ -159,7 +158,6 @@ sub GetMemberDetails {
|
||||||
SELECT borrowers.*,
|
SELECT borrowers.*,
|
||||||
category_type,
|
category_type,
|
||||||
categories.description,
|
categories.description,
|
||||||
reservefee,
|
|
||||||
enrolmentperiod
|
enrolmentperiod
|
||||||
FROM borrowers
|
FROM borrowers
|
||||||
LEFT JOIN categories ON borrowers.categorycode = categories.categorycode
|
LEFT JOIN categories ON borrowers.categorycode = categories.categorycode
|
||||||
|
|
|
@ -85,8 +85,9 @@ if ( $patron->category->effective_BlockExpiredPatronOpacActions ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Pass through any reserve charge
|
# Pass through any reserve charge
|
||||||
if ($borr->{reservefee} > 0){
|
my $reservefee = $patron->category->reservefee;
|
||||||
$template->param( RESERVE_CHARGE => sprintf("%.2f",$borr->{reservefee}));
|
if ( $reservefee > 0){
|
||||||
|
$template->param( RESERVE_CHARGE => sprintf("%.2f",$reservefee));
|
||||||
}
|
}
|
||||||
|
|
||||||
my $itemTypes = GetItemTypes();
|
my $itemTypes = GetItemTypes();
|
||||||
|
|
Loading…
Reference in a new issue