Bug 21511: Don't show acquisition details on subscription detail when there is no...
authorOwen Leonard <oleonard@myacpl.org>
Tue, 9 Oct 2018 17:19:09 +0000 (17:19 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Wed, 24 Oct 2018 17:22:47 +0000 (17:22 +0000)
This patch modifies the subscription detail page so that acquisitions
details section is not shown when there is no acquisitions data.

The acquisitions details are moved into a new tab similar to how it
appears on the bibliographic details page. A count of orders is now
passed to the template so that the check for existing acquisitions data
will work correctly.

To test, apply the patch and view the detail page for subscriptions.

- When viewing a subscription for which there are orders you should see
  an "Acquisitions details" tab containing the acquisitions data.
- When viewing a subscription with no orders the tab should not appear.

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt
serials/subscription-detail.pl

index a2cb7d4..a5dbfd4 100644 (file)
     <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 %]
+        <li>
+            <a href="#acquisition_details">Acquisition details</a>
+        </li>
+    [% END %]
 </ul>
 
 <div id="subscription_info">
     </div>
     </div>
 
-    [% IF orders %]
+    [% IF order_count %]
         <div id="acquisition_details">
             <h2>Acquisition details</h2>
             <table id="orders">
index 4eefe18..2e1139b 100755 (executable)
@@ -148,6 +148,7 @@ $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,
 );