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

(-)a/misc/cronjobs/fines.pl (-2 / +1 lines)
Lines 160-166 for my $overdue ( @{$overdues} ) { Link Here
160
        my $data = Koha::IssuingRules->get_effective_issuing_rule( { categorycode => $borrower->{categorycode}, itemtype => $itype, branchcode => $branchcode } );
160
        my $data = Koha::IssuingRules->get_effective_issuing_rule( { categorycode => $borrower->{categorycode}, itemtype => $itype, branchcode => $branchcode } );
161
        if ( defined($data->overduefinescap) ) {
161
        if ( defined($data->overduefinescap) ) {
162
            $amount = $data->overduefinescap;
162
            $amount = $data->overduefinescap;
163
            $unitcounttotal = 'n/a';
163
            $unitcount = 'n/a';
164
        }
164
        }
165
        else {
165
        else {
166
            print "No overduefinescap defined for {branchcode = $branchcode, itemtype = $itype and categorycode = $borrower->{categorycode}}\n";
166
            print "No overduefinescap defined for {branchcode = $branchcode, itemtype = $itype and categorycode = $borrower->{categorycode}}\n";
167
- 

Return to bug 19336