Bugzilla – Attachment 91801 Details for
Bug 11573
Fine descriptions related to Rentals are untranslatable
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 11573: Make rental accountlines translatable
Bug-11573-Make-rental-accountlines-translatable.patch (text/plain), 12.05 KB, created by
Nick Clemens (kidclamp)
on 2019-07-26 12:33:43 UTC
(
hide
)
Description:
Bug 11573: Make rental accountlines translatable
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2019-07-26 12:33:43 UTC
Size:
12.05 KB
patch
obsolete
>From 0fa1c70854a50f0d492425b7cdb7d246a34a00d1 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Tue, 23 Apr 2019 18:05:05 +0100 >Subject: [PATCH] Bug 11573: Make rental accountlines translatable > >To test: > >1. Set up an item type with a rental charge >2. Issue an item with that item type >3. Check fines, a charge of type 'Rent' will be visible with a >description of 'Rental'. >4. Renew the item >5. Check fines, a charge of type 'Rent' will be visible with a >description of 'Renewal of Rental Item TITLE BARCODE' where TITLE and >BARCODE are the items title and barcode. >5. Apply the patch >6. Repeat steps 1-4, charge descriptions should now be empty and charge >types should display 'Rental fee' and 'Renewal of rental item'. >7. Repeat steps 1-6 for an item type with a daily rental charge and note >the charge types are now 'Daily rental fee' and 'Renewal of daily rental >item' > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > C4/Circulation.pm | 18 ++++----- > Koha/Account.pm | 29 +++++++++----- > .../intranet-tmpl/prog/en/includes/accounts.inc | 43 +++++++++++---------- > .../bootstrap/en/includes/account-table.inc | 45 ++++++++++++---------- > 4 files changed, 73 insertions(+), 62 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index de4dc99ed3..9961d38077 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -1470,15 +1470,14 @@ sub AddIssue { > # If it costs to borrow this book, charge it to the patron's account. > my ( $charge, $itemtype ) = GetIssuingCharges( $item_object->itemnumber, $borrower->{'borrowernumber'} ); > if ( $charge > 0 ) { >- my $description = "Rental"; >- AddIssuingCharge( $issue, $charge, $description ); >+ AddIssuingCharge( $issue, $charge, 'rent' ); > } > > my $itemtype_object = Koha::ItemTypes->find( $item_object->effective_itemtype ); > if ( $itemtype_object ) { > my $accumulate_charge = $fees->accumulate_rentalcharge(); > if ( $accumulate_charge > 0 ) { >- AddIssuingCharge( $issue, $accumulate_charge, 'Daily rental' ) if $accumulate_charge > 0; >+ AddIssuingCharge( $issue, $accumulate_charge, 'rent_daily' ) if $accumulate_charge > 0; > $charge += $accumulate_charge; > $item_unblessed->{charge} = $charge; > } >@@ -2912,8 +2911,7 @@ sub AddRenewal { > # Charge a new rental fee, if applicable > my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber ); > if ( $charge > 0 ) { >- my $description = "Renewal of Rental Item " . $biblio->title . " " .$item_object->barcode; >- AddIssuingCharge($issue, $charge, $description); >+ AddIssuingCharge($issue, $charge, 'rent_renew'); > } > > # Charge a new accumulate rental fee, if applicable >@@ -2921,8 +2919,7 @@ sub AddRenewal { > if ( $itemtype_object ) { > my $accumulate_charge = $fees->accumulate_rentalcharge(); > if ( $accumulate_charge > 0 ) { >- my $type_desc = "Renewal of Daily Rental Item " . $biblio->title . " $item_unblessed->{'barcode'}"; >- AddIssuingCharge( $issue, $accumulate_charge, $type_desc ) >+ AddIssuingCharge( $issue, $accumulate_charge, 'rent_daily_renew' ) > } > $charge += $accumulate_charge; > } >@@ -3244,12 +3241,12 @@ sub _get_discount_from_rule { > > =head2 AddIssuingCharge > >- &AddIssuingCharge( $checkout, $charge, [$description] ) >+ &AddIssuingCharge( $checkout, $charge, $type ) > > =cut > > sub AddIssuingCharge { >- my ( $checkout, $charge, $description ) = @_; >+ my ( $checkout, $charge, $type ) = @_; > > # FIXME What if checkout does not exist? > >@@ -3257,12 +3254,11 @@ sub AddIssuingCharge { > my $accountline = $account->add_debit( > { > amount => $charge, >- description => $description, > note => undef, > user_id => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef, > library_id => C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef, > interface => C4::Context->interface, >- type => 'rent', >+ type => $type, > item_id => $checkout->itemnumber, > issue_id => $checkout->issue_id, > } >diff --git a/Koha/Account.pm b/Koha/Account.pm >index ddee843390..453a1e4db2 100644 >--- a/Koha/Account.pm >+++ b/Koha/Account.pm >@@ -444,6 +444,9 @@ $debit_type can be any of: > - sundry > - processing > - rent >+ - rent_daily >+ - rent_renewal >+ - rent_daily_renewal > - reserve > - manual > >@@ -709,6 +712,9 @@ our $offset_type = { > 'processing' => 'Processing Fee', > 'lost_item' => 'Lost Item', > 'rent' => 'Rental Fee', >+ 'rent_daily' => 'Rental Fee', >+ 'rent_renew' => 'Rental Fee', >+ 'rent_daily_renew' => 'Rental Fee', > 'overdue' => 'OVERDUE', > 'manual_debit' => 'Manual Debit', > 'hold_expired' => 'Hold Expired' >@@ -731,16 +737,19 @@ our $account_type_credit = { > =cut > > our $account_type_debit = { >- 'account' => 'A', >- 'overdue' => 'OVERDUE', >- 'lost_item' => 'LOST', >- 'new_card' => 'N', >- 'sundry' => 'M', >- 'processing' => 'PF', >- 'rent' => 'Rent', >- 'reserve' => 'Res', >- 'manual_debit' => 'M', >- 'hold_expired' => 'HE' >+ 'account' => 'A', >+ 'overdue' => 'OVERDUE', >+ 'lost_item' => 'LOST', >+ 'new_card' => 'N', >+ 'sundry' => 'M', >+ 'processing' => 'PF', >+ 'rent' => 'RENT', >+ 'rent_daily' => 'RENT_DAILY', >+ 'rent_renew' => 'RENT_RENEW', >+ 'rent_daily_renew' => 'RENT_DAILY_RENEW', >+ 'reserve' => 'Res', >+ 'manual_debit' => 'M', >+ 'hold_expired' => 'HE' > }; > > =head1 AUTHORS >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc >index e221af6525..fb8dabda89 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc >@@ -1,25 +1,28 @@ > [%- BLOCK account_type_description -%] > [%- SWITCH account.accounttype -%] >- [%- CASE 'Pay' -%]<span>Payment >- [%- CASE 'Pay00' -%]<span>Payment (cash via SIP2) >- [%- CASE 'Pay01' -%]<span>Payment (VISA via SIP2) >- [%- CASE 'Pay02' -%]<span>Payment (credit card via SIP2) >- [%- CASE 'N' -%]<span>New card >- [%- CASE 'OVERDUE' -%]<span>Fine >- [%- CASE 'A' -%]<span>Account management fee >- [%- CASE 'M' -%]<span>Sundry >- [%- CASE 'LOST' -%]<span>Lost item >- [%- CASE 'W' -%]<span>Writeoff >- [%- CASE 'HE' -%]<span>Hold waiting too long >- [%- CASE 'Rent' -%]<span>Rental fee >- [%- CASE 'FOR' -%]<span>Forgiven >- [%- CASE 'PF' -%]<span>Lost item processing fee >- [%- CASE 'PAY' -%]<span>Payment >- [%- CASE 'WO' -%]<span>Writeoff >- [%- CASE 'C' -%]<span>Credit >- [%- CASE 'LOST_RETURN' -%]<span>Lost item fee refund >- [%- CASE 'Res' -%]<span>Hold fee >- [%- CASE -%]<span>[% account.accounttype | html %] >+ [%- CASE 'Pay' -%]<span>Payment >+ [%- CASE 'Pay00' -%]<span>Payment (cash via SIP2) >+ [%- CASE 'Pay01' -%]<span>Payment (VISA via SIP2) >+ [%- CASE 'Pay02' -%]<span>Payment (credit card via SIP2) >+ [%- CASE 'N' -%]<span>New card >+ [%- CASE 'OVERDUE' -%]<span>Fine >+ [%- CASE 'A' -%]<span>Account management fee >+ [%- CASE 'M' -%]<span>Sundry >+ [%- CASE 'LOST' -%]<span>Lost item >+ [%- CASE 'W' -%]<span>Writeoff >+ [%- CASE 'HE' -%]<span>Hold waiting too long >+ [%- CASE 'RENT' -%]<span>Rental fee >+ [%- CASE 'RENT_DAILY' -%]<span>Daily rental fee >+ [%- CASE 'RENT_RENEW' -%]<span>Renewal of rental item >+ [%- CASE 'RENT_DAILY_RENEW' -%]<span>Rewewal of daily rental item >+ [%- CASE 'FOR' -%]<span>Forgiven >+ [%- CASE 'PF' -%]<span>Lost item processing fee >+ [%- CASE 'PAY' -%]<span>Payment >+ [%- CASE 'WO' -%]<span>Writeoff >+ [%- CASE 'C' -%]<span>Credit >+ [%- CASE 'LOST_RETURN' -%]<span>Lost item fee refund >+ [%- CASE 'Res' -%]<span>Hold fee >+ [%- CASE -%][% account.accounttype | html %] > [%- END -%] > [%- PROCESS account_status_description account=account -%]</span> > [%- END -%] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/account-table.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/account-table.inc >index 230ff9c435..6a0546bca7 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/account-table.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/account-table.inc >@@ -118,27 +118,30 @@ > > [%- BLOCK account_type_description -%] > [%- SWITCH account.accounttype -%] >- [%- CASE 'Pay' -%]<span>Payment >- [%- CASE 'Pay00' -%]<span>Payment (cash via SIP2) >- [%- CASE 'Pay01' -%]<span>Payment (VISA via SIP2) >- [%- CASE 'Pay02' -%]<span>Payment (credit card via SIP2) >- [%- CASE 'N' -%]<span>New card >- [%- CASE 'OVERDUE' -%]<span>Fine >- [%- CASE 'A' -%]<span>Account management fee >- [%- CASE 'M' -%]<span>Sundry >- [%- CASE 'LOST' -%]<span>Lost item >- [%- CASE 'W' -%]<span>Writeoff >- [%- CASE 'HE' -%]<span>Hold waiting too long >- [%- CASE 'Rent' -%]<span>Rental fee >- [%- CASE 'FOR' -%]<span>Forgiven >- [%- CASE 'LR' -%]<span>Lost item fee refund >- [%- CASE 'PF' -%]<span>Lost item processing fee >- [%- CASE 'PAY' -%]<span>Payment >- [%- CASE 'WO' -%]<span>Writeoff >- [%- CASE 'C' -%]<span>Credit >- [%- CASE 'CR' -%]<span>Credit >- [%- CASE 'Res' -%]<span>Hold fee >- [%- CASE -%]<span>[% account.accounttype | html %] >+ [%- CASE 'Pay' -%]<span>Payment >+ [%- CASE 'Pay00' -%]<span>Payment (cash via SIP2) >+ [%- CASE 'Pay01' -%]<span>Payment (VISA via SIP2) >+ [%- CASE 'Pay02' -%]<span>Payment (credit card via SIP2) >+ [%- CASE 'VOID' -%]<span>Voided >+ [%- CASE 'N' -%]<span>New card >+ [%- CASE 'OVERDUE' -%]<span>Fine >+ [%- CASE 'A' -%]<span>Account management fee >+ [%- CASE 'M' -%]<span>Sundry >+ [%- CASE 'LOST' -%]<span>Lost item >+ [%- CASE 'W' -%]<span>Writeoff >+ [%- CASE 'HE' -%]<span>Hold waiting too long >+ [%- CASE 'RENT' -%]<span>Rental fee >+ [%- CASE 'RENT_DAILY' -%]<span>Daily rental fee >+ [%- CASE 'RENT_RENEW' -%]<span>Renewal of rental item >+ [%- CASE 'RENT_DAILT_RENEW' -%]<span>Renewal of dailt rental item >+ [%- CASE 'FOR' -%]<span>Forgiven >+ [%- CASE 'PF' -%]<span>Lost item processing fee >+ [%- CASE 'PAY' -%]<span>Payment >+ [%- CASE 'WO' -%]<span>Writeoff >+ [%- CASE 'C' -%]<span>Credit >+ [%- CASE 'LOST_RETURN' -%]<span>Lost item fee refund >+ [%- CASE 'Res' -%]<span>Hold fee >+ [%- CASE -%]<span>[% account.accounttype | html %] > [%- END -%] > [%- PROCESS account_status_description account=account -%]</span> > [%- END -%] >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 11573
:
24473
|
24485
|
24486
|
25715
|
27822
|
27823
|
27824
|
47236
|
47237
|
47238
|
47239
|
47240
|
47241
|
47242
|
47288
|
47289
|
47290
|
47291
|
88549
|
88600
|
88601
|
88602
|
88603
|
88604
|
88605
|
88606
|
88726
|
88727
|
88728
|
88729
|
90231
|
90232
|
90233
|
90234
|
90246
|
90256
|
90313
|
90314
|
90315
|
90316
|
91529
|
91530
|
91531
|
91532
|
91800
| 91801 |
91802
|
91803
|
91804
|
91805
|
91806