Bugzilla – Attachment 4283 Details for
Bug 6377
fines should be red on patron search
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Fix for Bug 6377 - fines should be red on patron search
Fix-for-Bug-6377---fines-should-be-red-on-patron-s.patch (text/plain), 2.18 KB, created by
Owen Leonard
on 2011-05-27 16:05:46 UTC
(
hide
)
Description:
Fix for Bug 6377 - fines should be red on patron search
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2011-05-27 16:05:46 UTC
Size:
2.18 KB
patch
obsolete
>From 2883b6842ee2ce679bfa41b49f7ee1d88accc3b6 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Fri, 27 May 2011 12:02:08 -0400 >Subject: [PATCH] Fix for Bug 6377 - fines should be red on patron search >Content-Type: text/plain; charset="utf-8" > >Adding classes for credit (green) and debit (red) >--- > .../intranet-tmpl/prog/en/css/staff-global.css | 7 +++++-- > .../prog/en/modules/members/member.tt | 2 +- > 2 files changed, 6 insertions(+), 3 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css >index c211507..53f1120 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css >+++ b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css >@@ -17,7 +17,9 @@ a:hover { > color : #669ACC; > } > >-a.overdue,.overdue { >+a.overdue, >+.overdue, >+.debit { > color : #cc0000; > } > >@@ -1731,7 +1733,8 @@ tr.reserved td { > tr.transfered td { > background-color : #e8f0f6; > } >-.waitinghere { >+.waitinghere, >+.credit { > color : #669900; > } > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt >index 9965362..85b1d3e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt >@@ -65,7 +65,7 @@ > <td>[% resultsloo.branchcode %]</td> > <td>[% resultsloo.dateexpiry %]</td> > <td>[% IF ( resultsloo.overdues ) %]<span class="overdue"><strong>[% resultsloo.overdues %]</strong></span>[% ELSE %][% resultsloo.overdues %][% END %]/[% resultsloo.issues %]</td> >- <td>[% resultsloo.fines %]</td> >+ <td>[% IF ( resultsloo.fines < 0 ) %]<span class="credit">[% resultsloo.fines %]</span> [% ELSIF resultsloo.fines > 0 %] <span class="debit"><strong>[% resultsloo.fines %]</strong></span> [% ELSE %] [% resultsloo.fines %] [% END %]</td> > <td>[% resultsloo.borrowernotes %]</td> > <td>[% IF ( resultsloo.category_type ) %] > <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=circ&borrowernumber=[% resultsloo.borrowernumber %]&category_type=[% resultsloo.category_type %]">Edit</a> >-- >1.7.3
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 6377
:
4199
| 4283 |
4284