@@ -, +, @@ - Go to Acquisitions -> Invoices. - You should see two tabs, "Open invoices" and "Closed invoices." - The tabs should look correct and work correctly. --- .../prog/en/modules/acqui/invoices.tt | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt @@ -135,13 +135,13 @@ [% END # /IF CAN_user_acquisition_merge_invoices %] [% END # /BLOCK invoices_table %] -
- -
-
+ [% WRAPPER tabs id= "invoicestabs" %] + [% WRAPPER tabs_nav %] + [% WRAPPER tab_item tabname= "opened" active= 1 %] Open invoices ([% openedinvoices.size || 0 | html %]) [% END %] + [% WRAPPER tab_item tabname= "closed" %] Closed invoices ([% closedinvoices.size || 0 | html %]) [% END %] + [% END %] + [% WRAPPER tab_panels %] + [% WRAPPER tab_panel tabname="opened" active= 1 %] [% IF openedinvoices %] [% INCLUDE invoices_table invoices = openedinvoices %] [% ELSE %] @@ -149,8 +149,9 @@

Your search returned no open invoices.

[% END %] -
-
+ [% END # /#opened %] + + [% WRAPPER tab_panel tabname="closed" %] [% IF closedinvoices %] [% INCLUDE invoices_table invoices = closedinvoices closed = 1 %] [% ELSE %] @@ -158,10 +159,9 @@

Your search returned no closed invoices.

[% END %] -
- - - + [% END # /#closed %] + [% END # /tab_panels %] + [% END # /#invoicestabs %]
--