Bugzilla – Attachment 81022 Details for
Bug 21511
Don't show acquisition details on subscription detail when there is no acq data
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21511: (RM follow-up) Use orders.count instead of new variable
Bug-21511-RM-follow-up-Use-orderscount-instead-of-.patch (text/plain), 1.75 KB, created by
Nick Clemens (kidclamp)
on 2018-10-23 13:17:28 UTC
(
hide
)
Description:
Bug 21511: (RM follow-up) Use orders.count instead of new variable
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2018-10-23 13:17:28 UTC
Size:
1.75 KB
patch
obsolete
>From b48511319320525bee25e1318ba3b7ea18214213 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Tue, 23 Oct 2018 13:17:06 +0000 >Subject: [PATCH] Bug 21511: (RM follow-up) Use orders.count instead of new > variable > >--- > .../intranet-tmpl/prog/en/modules/serials/subscription-detail.tt | 4 ++-- > serials/subscription-detail.pl | 1 - > 2 files changed, 2 insertions(+), 3 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 a5dbfd4..a1a218a 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 >@@ -65,7 +65,7 @@ > <li><a href="#subscription_planning">Planning</a></li> > <li><a href="#subscription_issues">Issues</a></li> > <li><a href="#subscription_summary">Summary</a></li> >- [% IF order_count %] >+ [% IF orders.count %] > <li> > <a href="#acquisition_details">Acquisition details</a> > </li> >@@ -345,7 +345,7 @@ > </div> > </div> > >- [% IF order_count %] >+ [% IF orders.count %] > <div id="acquisition_details"> > <h2>Acquisition details</h2> > <table id="orders"> >diff --git a/serials/subscription-detail.pl b/serials/subscription-detail.pl >index 2e1139b..4eefe18 100755 >--- a/serials/subscription-detail.pl >+++ b/serials/subscription-detail.pl >@@ -148,7 +148,6 @@ $template->param( > irregular_issues => scalar @irregular_issues, > default_bib_view => $default_bib_view, > orders => $orders, >- order_count => $orders->count, > (uc(C4::Context->preference("marcflavour"))) => 1, > ); > >-- >2.1.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 21511
:
80301
|
80424
|
80438
| 81022