Bugzilla – Attachment 3910 Details for
Bug 6179
Extra column on fines in staff client
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed fix
0001-Fix-for-Bug-6179-Extra-column-on-fines-in-staff-clie.patch (text/plain), 1.98 KB, created by
Owen Leonard
on 2011-04-13 15:55:07 UTC
(
hide
)
Description:
Proposed fix
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2011-04-13 15:55:07 UTC
Size:
1.98 KB
patch
obsolete
>From 098a78456dce5455d39f293c5fb4abb9c03452b0 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Wed, 13 Apr 2011 11:52:07 -0400 >Subject: [PATCH] Fix for Bug 6179, Extra column on fines in staff client >Content-Type: text/plain; charset="utf-8" > >Template variable scope error fixes the column error. >This patch also includes a fix for the column span >error in the table footer. >--- > .../prog/en/modules/members/boraccount.tt | 17 +++++++++++++++-- > 1 files changed, 15 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >index 9f5262e..3545f86 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >@@ -48,7 +48,7 @@ > <td>[% account.note %]</td> > [% IF ( account.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amount %]</td> > [% IF ( account.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amountoutstanding %]</td> >- [% IF ( account.reverse_col ) %] >+ [% IF ( reverse_col ) %] > <td> > [% IF ( account.payment ) %] > <a href="boraccount.pl?action=reverse&borrowernumber=[% account.borrowernumber %]&accountno=[% account.accountno %]">Reverse</a> >@@ -70,7 +70,20 @@ > <tfoot> > <tr> > <td colspan="4">Total due</td> >- [% IF ( totalcredit ) %]<td colspan="2" class="credit">[% ELSE %]<td colspan="2" class="debit">[% END %][% total %]</td> >+ [% IF ( totalcredit ) %] >+ [% IF ( reverse_col ) %] >+ <td colspan="3" class="credit"> >+ [% ELSE %] >+ <td colspan="2" class="credit"> >+ [% END %] >+ [% ELSE %] >+ [% IF ( reverse_col ) %] >+ <td colspan="3" class="debit"> >+ [% ELSE %] >+ <td colspan="2" class="credit"> >+ [% END %] >+ [% END %] >+ [% total %]</td> > </tr> > </tfoot> > </table> >-- >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 6179
:
3909
| 3910 |
3953