@@ -, +, @@ - Add a charge to your account - Check the note on the details and checkouts tabs - Check the tab name on the details tab - Activate batch checkouts via systempreferences for your patron category: - BatchCheckouts - BatchCheckoutsValidCategories - Add a guarantee to your patron and allow to see fines (requires: AllowStaffToSetFinesVisibilityForGuarantor) - Add a manual fine for the guaranee above NoIssuesChargeGuarantee - Go to the batch checkout tab of your patron and verify note there --- koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc | 4 ++-- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- .../intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc @@ -2,8 +2,8 @@ [% SET NoIssuesCharge = Koha.Preference('noissuescharge') %] [% IF fines and fines > 0 %]
  • - Fees & Charges: - Patron has outstanding fees & charges of [% fines | $Price %]. + Charges: + Patron has outstanding charges of [% fines | $Price %]. [% IF !Koha.Preference('AllowFineOverride') && NoIssuesCharge && fines > NoIssuesCharge %] Checkouts are BLOCKED because fine balance is OVER THE LIMIT. [% END %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -766,7 +766,7 @@ [% IF ( charges_guarantees ) %]
  • - Fees & Charges: Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %]. + Charges: Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %]. [% IF noissues %] Checkouts are BLOCKED because fine balance is OVER THE LIMIT. [% END %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt @@ -51,7 +51,7 @@ [% END %] [% IF charges_guarantees %]
  • - Fees & Charges: Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %]. + Charges: Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %].
  • Checkouts are BLOCKED because fine balance is OVER THE LIMIT. --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -710,7 +710,7 @@ [% END %] [% IF ( fines ) %]
  • - Fines & Charges ([% fines | $Price %]) + Charges ([% fines | $Price %])
  • [% END %] [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %] --