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

(-)a/C4/Overdues.pm (-2 / +1 lines)
Lines 274-280 sub CalcFine { Link Here
274
            # biblio-level recall
274
            # biblio-level recall
275
            $amount = $charge_periods * $issuing_rule->{recall_overdue_fine};
275
            $amount = $charge_periods * $issuing_rule->{recall_overdue_fine};
276
        }
276
        }
277
        if ( scalar @recalls == 0 ) {
277
        if ( scalar @recalls == 0 && $issuing_rule->{fine}) {
278
            # no recall, use normal fine amount
278
            # no recall, use normal fine amount
279
            $amount = $charge_periods * $issuing_rule->{fine};
279
            $amount = $charge_periods * $issuing_rule->{fine};
280
        }
280
        }
281
- 

Return to bug 30788