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

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

Return to bug 19336