Bugzilla – Attachment 111895 Details for
Bug 26697
Make translation file for types and descriptions of charges consistent between OPAC and staff
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26697: Make account.inc consistent between staff and opac
Bug-26697-Make-accountinc-consistent-between-staff.patch (text/plain), 7.90 KB, created by
Martin Renvoize (ashimema)
on 2020-10-16 14:58:15 UTC
(
hide
)
Description:
Bug 26697: Make account.inc consistent between staff and opac
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2020-10-16 14:58:15 UTC
Size:
7.90 KB
patch
obsolete
>From 002627f981983447cd10683134ca6910690c5526 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Fri, 16 Oct 2020 15:57:30 +0100 >Subject: [PATCH] Bug 26697: Make account.inc consistent between staff and opac > >--- > .../prog/en/includes/accounts.inc | 26 +++++----- > .../bootstrap/en/includes/account-table.inc | 47 +------------------ > .../bootstrap/en/includes/accounts.inc | 47 +++++++++++++++++++ > 3 files changed, 61 insertions(+), 59 deletions(-) > create mode 100644 koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc >index 62ea570040..360e10b1f5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc >@@ -33,19 +33,6 @@ > </span> > [%- END -%] > >-[%- BLOCK offset_type_description -%] >- [%- SWITCH account_offset.type -%] >- [%- CASE 'Credit Applied' -%]<span>Credit applied</span> >- [%- CASE 'Payment' -%]<span>Payment</span> >- [%- CASE 'Manual Credit' -%]<span>Manual credit</span> >- [%- CASE 'Manual Debit' -%]<span>Manual invoice</span> >- [%- CASE 'Lost Item' -%]<span>Lost item returned</span> >- [%- CASE 'Writeoff' -%]<span>Writeoff</span> >- [%- CASE 'Void Payment' -%]<span>Void payment</span> >- [%- CASE -%][% account_offset.type | html %] >- [%- END -%] >-[%- END -%] >- > [%- BLOCK account_status_description -%] > [%- SWITCH account.status -%] > [%- CASE 'UNRETURNED' -%]<span> (Accruing)</span> >@@ -58,3 +45,16 @@ > [%- CASE -%] > [%- END -%] > [%- END -%] >+ >+[%- BLOCK offset_type_description -%] >+ [%- SWITCH account_offset.type -%] >+ [%- CASE 'Credit Applied' -%]<span>Credit applied</span> >+ [%- CASE 'Payment' -%]<span>Payment</span> >+ [%- CASE 'Manual Credit' -%]<span>Manual credit</span> >+ [%- CASE 'Manual Debit' -%]<span>Manual invoice</span> >+ [%- CASE 'Lost Item' -%]<span>Lost item returned</span> >+ [%- CASE 'Writeoff' -%]<span>Writeoff</span> >+ [%- CASE 'Void Payment' -%]<span>Void payment</span> >+ [%- CASE -%][% account_offset.type | html %] >+ [%- END -%] >+[%- 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 54fd662c28..a3b6b935d5 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/account-table.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/account-table.inc >@@ -1,3 +1,4 @@ >+[% PROCESS 'accounts.inc' %] > <form method="post" action="opac-account-pay.pl" class="form-horizontal"> > [% IF ( ACCOUNT_LINES ) %] > <table class="table table-bordered table-striped" id="finestable"> >@@ -169,49 +170,3 @@ > </fieldset> > [% END # /IF ENABLE_OPAC_PAYMENTS && DISPLAY_PAYMENT_BLOCK %] > </form> >- >-[%- BLOCK account_type_description -%] >- <span> >- [%- IF account.credit_type_code -%] >- [%- SWITCH account.credit_type_code -%] >- [%- CASE 'PAYMENT' -%]Payment >- [%- CASE 'WRITEOFF' -%]Writeoff >- [%- CASE 'FORGIVEN' -%]Forgiven >- [%- CASE 'CREDIT' -%]Credit >- [%- CASE 'LOST_FOUND' -%]Lost item fee refund >- [%- CASE 'REFUND' -%]Refund >- [%- CASE -%][% account.credit_type.description | html %] >- [%- END -%] >- [%- ELSIF account.debit_type_code -%] >- [%- SWITCH account.debit_type_code -%] >- [%- CASE 'ACCOUNT' -%]Account creation fee >- [%- CASE 'ACCOUNT_RENEW' -%]Account renewal fee >- [%- CASE 'LOST' -%]Lost item >- [%- CASE 'MANUAL' -%]Manual fee >- [%- CASE 'NEW_CARD' -%]New card >- [%- CASE 'OVERDUE' -%]Fine >- [%- CASE 'PROCESSING' -%]Lost item processing fee >- [%- CASE 'RENT' -%]Rental fee >- [%- CASE 'RENT_DAILY' -%]Daily rental fee >- [%- CASE 'RENT_RENEW' -%]Renewal of rental item >- [%- CASE 'RENT_DAILY_RENEW' -%]Renewal of daily rental item >- [%- CASE 'RESERVE' -%]Hold fee >- [%- CASE 'RESERVE_EXPIRED' -%]Hold waiting too long >- [%- CASE -%][% account.debit_type.description | html %] >- [%- END -%] >- [%- END -%] >- [%- PROCESS account_status_description account=account -%] >- </span> >-[%- END # /BLOCK account_type_description -%] >- >-[%- BLOCK account_status_description -%] >- [%- SWITCH account.status -%] >- [%- CASE 'UNRETURNED' -%]<span> (Accruing)</span> >- [%- CASE 'RETURNED' -%]<span> (Returned)</span> >- [%- CASE 'REPLACED' -%]<span> (Replaced)</span> >- [%- CASE 'FORGIVEN' -%]<span> (Forgiven)</span> >- [%- CASE 'VOID' -%]<span> (Voided)</span> >- [%- CASE 'LOST' -%]<span> (Lost)</span> >- [%- CASE -%] >- [%- END -%] >-[%- END -%] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc >new file mode 100644 >index 0000000000..1d2a77baae >--- /dev/null >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc >@@ -0,0 +1,47 @@ >+[%- BLOCK account_type_description -%] >+ <span> >+ [%- IF account.credit_type_code -%] >+ [%- SWITCH account.credit_type_code -%] >+ [%- CASE 'PAYMENT' -%]Payment >+ [%- CASE 'WRITEOFF' -%]Writeoff >+ [%- CASE 'FORGIVEN' -%]Forgiven >+ [%- CASE 'CREDIT' -%]Credit >+ [%- CASE 'LOST_FOUND' -%]Lost item fee refund >+ [%- CASE 'REFUND' -%]Refund >+ [%- CASE -%][% account.credit_type.description | html %] >+ [%- END -%] >+ [%- ELSIF account.debit_type_code -%] >+ [%- SWITCH account.debit_type_code -%] >+ [%- CASE 'ACCOUNT' -%]Account creation fee >+ [%- CASE 'ACCOUNT_RENEW' -%]Account renewal fee >+ [%- CASE 'LOST' -%]Lost item >+ [%- CASE 'MANUAL' -%]Manual fee >+ [%- CASE 'NEW_CARD' -%]New card >+ [%- CASE 'OVERDUE' -%]Fine >+ [%- CASE 'PROCESSING' -%]Lost item processing fee >+ [%- CASE 'RENT' -%]Rental fee >+ [%- CASE 'RENT_DAILY' -%]Daily rental fee >+ [%- CASE 'RENT_RENEW' -%]Renewal of rental item >+ [%- CASE 'RENT_DAILY_RENEW' -%]Renewal of daily rental item >+ [%- CASE 'RESERVE' -%]Hold fee >+ [%- CASE 'RESERVE_EXPIRED' -%]Hold waiting too long >+ [%- CASE 'Payout' -%]Payout >+ [%- CASE -%][% account.debit_type.description | html %] >+ [%- END -%] >+ [%- END -%] >+ [%- PROCESS account_status_description account=account -%] >+ </span> >+[%- END -%] >+ >+[%- BLOCK account_status_description -%] >+ [%- SWITCH account.status -%] >+ [%- CASE 'UNRETURNED' -%]<span> (Accruing)</span> >+ [%- CASE 'RETURNED' -%]<span> (Returned)</span> >+ [%- CASE 'REPLACED' -%]<span> (Replaced)</span> >+ [%- CASE 'REFUNDED' -%]<span> (Refunded)</span> >+ [%- CASE 'FORGIVEN' -%]<span> (Forgiven)</span> >+ [%- CASE 'VOID' -%]<span> (Voided)</span> >+ [%- CASE 'LOST' -%]<span> (Lost)</span> >+ [%- CASE -%] >+ [%- END -%] >+[%- END -%] >-- >2.20.1
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 26697
:
111895
|
111915
|
111939
|
112077
|
113067