Bugzilla – Attachment 7785 Details for
Bug 3901
Rollover on Serial showing 9999999
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 3901: Rollover on serials summary showing 9999999
Bug-3901-Rollover-on-serials-summary-showing-99999.patch (text/plain), 1.75 KB, created by
Katrin Fischer
on 2012-02-21 05:43:48 UTC
(
hide
)
Description:
Bug 3901: Rollover on serials summary showing 9999999
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2012-02-21 05:43:48 UTC
Size:
1.75 KB
patch
obsolete
>From cb816d4d7a65a266ded179406726b30bdaaa609a Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <Katrin.Fischer.83@web.de> >Date: Sun, 19 Feb 2012 15:36:02 +0100 >Subject: [PATCH] Bug 3901: Rollover on serials summary showing 9999999 > >For Rollover 9999999 the planning tab on the subscription will now show 'Never'. >--- > .../prog/en/modules/serials/subscription-detail.tt | 12 +++++++----- > 1 files changed, 7 insertions(+), 5 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt >index ba44815..6e66728 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt >@@ -222,15 +222,17 @@ $(document).ready(function() { > [% END %] > </tr> > <tr><td>Rollover:</td> >- <td align="center">[% whenmorethan1 %]</td> >+ <td align="center"> >+ [% IF ( whenmorethan1 < 9999999 ) %][% whenmorethan1 %][% ELSE %]Never[% END %] >+ </td> > [% IF ( whenmorethan2 ) %] >- <td align="center"> >- [% whenmorethan2 %] >+ <td align="center"> >+ [% IF ( whenmorethan2 < 9999999 ) %][% whenmorethan2 %][% ELSE %]Never[% END %] > </td> > [% END %] > [% IF ( whenmorethan3 ) %] >- <td align="center"> >- [% whenmorethan3 %] >+ <td align="center"> >+ [% IF ( whenmorethan3 < 9999999 ) %][% whenmorethan3 %][% ELSE %]Never[% END %] > </td> > [% END %] > </tr> >-- >1.7.5.4
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 3901
:
1664
|
7759
|
7784
|
7785
|
7880