Bug 32660: Use template wrapper for basket groups tabs

This patch implements the template WRAPPER system (see Bug 32571) for
building tabs on the basket groups page.

To test you must have at least one active vendor, one or more closed
baskets under that vendor, and at least one basket group containing a
closed basket.

Apply the patch and go to Acquisitions -> Vendor -> Basket groups.

You should see two tabs, "Open" and "Closed." The tabs should look
correct and work correctly.

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Owen Leonard 2023-01-17 19:58:55 +00:00 committed by Tomas Cohen Arazi
parent 387ea53db2
commit d466229412
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -328,13 +328,14 @@
</div>
<h1>Basket grouping for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | uri %]">[% booksellername | html %]</a></h1>
[% IF (NoEDIMessage) %]<div><strong>No EDIFACT configuration for [% booksellername | html %]</strong></div>[% END %]
<div id="basket_groups" class="toptabs">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation"><a href="#opened" aria-controls="opened" role="tab" data-toggle="tab">Open</a></li>
<li role="presentation"><a href="#closed" aria-controls="closed" role="tab" data-toggle="tab">Closed</a></li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="opened">
[% WRAPPER tabs id= "basket_groups" %]
[% WRAPPER tabs_nav %]
[% WRAPPER tab_item tabname= "opened" active= 1 %] Open [% END %]
[% WRAPPER tab_item tabname= "closed" %] Closed [% END %]
[% END %]
[% WRAPPER tab_panels %]
[% WRAPPER tab_panel tabname="opened" active= 1 %]
<table id="basket_group_opened">
<thead>
<tr>
@ -372,8 +373,9 @@
[% END %]
</tbody>
</table>
</div>
<div role="tabpanel" class="tab-pane" id="closed">
[% END #/opened %]
[% WRAPPER tab_panel tabname="closed" %]
<table id="basket_group_closed">
<thead>
<tr>
@ -416,9 +418,9 @@
[% END %]
</tbody>
</table>
</div>
</div>
</div>
[% END #/closed %]
[% END # /WRAPPER tab_panels %]
[% END # /#basket_groups %]
[% END %]
</main>
</div> <!-- /.col-sm-10.col-sm-push-2 -->