Bug 19479: Display price in basket group formatted according to CurrencyFormat syspre...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / basketgroup.tt
index c651e00..4c3e833 100644 (file)
@@ -1,23 +1,30 @@
+[% USE Asset %]
+[% USE Branches %]
+[% USE Price %]
 [% INCLUDE 'doc-head-open.inc' %]
-<title>Koha &rsaquo; Basket Grouping for [% booksellername |html %]</title>
+<title>Koha &rsaquo; Basket grouping for [% booksellername |html %]</title>
+[% Asset.css("css/datatables.css") %]
 [% INCLUDE 'doc-head-close.inc' %]
-<script type="text/javascript" src="[% themelang %]/js/acq.js"></script>
+[% INCLUDE 'datatables.inc' %]
+[% Asset.js("lib/yui/utilities/utilities.js") %]
+[% Asset.js("lib/yui/button/button-min.js") %]
+[% Asset.js("lib/yui/container/container_core-min.js") %]
+[% Asset.js("lib/yui/menu/menu-min.js") %]
+[% Asset.js("js/basketgroup.js") %]
 [% IF ( grouping ) %]
-<script type="text/javascript" src="[% yuipath %]/yahoo-dom-event/yahoo-dom-event.js"></script>
-<script type="text/javascript" src="[% yuipath %]/animation/animation-min.js"></script>
-<script type="text/javascript" src="[% yuipath %]/dragdrop/dragdrop-min.js"></script>
-<script type="text/javascript" src="[% yuipath %]/element/element-min.js"></script>
+[% Asset.js("lib/yui/yahoo-dom-event/yahoo-dom-event.js") %]
+[% Asset.js("lib/yui/animation/animation-min.js") %]
+[% Asset.js("lib/yui/dragdrop/dragdrop-min.js") %]
+[% Asset.js("lib/yui/element/element-min.js") %]
 <style type="text/css">
 /*margin and padding on body element
   can introduce errors in determining
   element position and are not recommended;
   we turn them off as a foundation for YUI
   CSS treatments. */
-body {
-       margin:0;
-       padding:0;
+#basketgroupcolumns {
+    width: 58em;
 }
-
 #ungrouped {
        overflow: auto;
        height: 400px;
@@ -85,6 +92,12 @@ fieldset.various li {
 //<![CDATA[
        YAHOO.util.Event.onDOMReady(DDApp.init, DDApp, true);
 
+var MSG_CONFIRM_CLOSE_BASKETGROUP = _("Are you sure you want to close this basketgroup?");
+var MSG_CLOSE_EMPTY_BASKET = _("Why close an empty basket?");
+var MSG_SAVE_BEFORE_PRINTING = _("You need to save the page before printing");
+var MSG_REOPEN_BASKETGROUP = _("reopen basketgroup");
+var MSG_FILE_DOWNLOAD_ERROR = _("Error downloading the file");
+
 function submitForm(form) {
     if (form.close.checked == true) {
        var input = document.createElement("input");
@@ -94,225 +107,285 @@ function submitForm(form) {
        form.appendChild(input);
     }
 }
-// prepare DOM for YUI Toolbar
 
  $(document).ready(function() {
-  //  $("#toolbar").empty();
-    yuiToolbar();
-    $("#basket_groups > ul").tabs();
- });
+    $("#basket_groups").tabs();
 
-// YUI Toolbar Functions
+    $("table").dataTable($.extend(true, {}, dataTablesDefaults, {
+        "aoColumnDefs": [
+            { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
+        ],
+        "bAutoWidth": false,
+        "sPaginationType": "four_button"
+    } ));
+
+ });
 
-function yuiToolbar() {
-       var booksellermenu = [
-               { text: _("Vendor"), url: "/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]" },
-               { text: _("Edit vendor"), url: "/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]&op=enter"},
-       ]
-       var ordersbutton = [
-                { text: _("Manage orders"), url: "/cgi-bin/koha/acqui/booksellers.pl?booksellerid=[% booksellerid %]" },
-                { text: _("Edit uncertain prices"), url: "/cgi-bin/koha/acqui/uncertainprice.pl?booksellerid=[% booksellerid %]&owner=1" },
-       ]
-       new YAHOO.widget.Button("newbasketgroup");
-    new YAHOO.widget.Button({
-        type: "menu",
-        label: _("Vendor"),
-        name: "booksellerbutton",
-        menu: booksellermenu,
-        container: "toolbar"
-    });
 
-    new YAHOO.widget.Button({
-        type: "menu",
-        label: _("Orders"),
-        name: "ordersbutton",
-        menu: ordersbutton,
-        container: "toolbar"
-    });
-}
 //]]>
 </script>
 </head>
-<body>
+<body id="acq_basketgroup" class="acq">
 [% INCLUDE 'header.inc' %]
 [% INCLUDE 'acquisitions-search.inc' %]
 
-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo; <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a> &rsaquo; Basket Grouping</div>
-
-<div id="doc" class="yui-t7">
-            
-        <div class="yui-b"> 
-               <div id="toolbar">
-                               <a href="?op=add&amp;booksellerid=[% booksellerid %]" name="newbasketgroup" id="newbasketgroup">New Basket Group</a>
-                       </div>
-                       <h1>Basket Grouping for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
-               </div>
+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo;
 [% IF ( grouping ) %]
-       <div id="bd"> 
-           <div class="yui-g"> 
-                   <div class="yui-u">
-
-                               <form action="[% scriptname %]" method="post" name="basketgroups" id="basketgroups">
-                   <div id="groups">
-                   <fieldset class="brief">
-                   <div class="workarea_alt" >
-                   <h3>Ungrouped Baskets</h3>
-                   <ul id="ungrouped" class="draglist_alt">
-                   [% IF ( baskets ) %]
-                       [% FOREACH basket IN baskets %]
-                           <li class="ungrouped" id="b-[% basket.basketno %]" >
-                               <a href="basket.pl?basketno=[% basket.basketno %]">
-                               [% IF ( basket.basketname ) %]
-                                   [% basket.basketname %]
-                               [% ELSE %]
-                                   No name, basketnumber: [% basket.basketno %]
-                               [% END %]
-                               </a>, <br />
-                               Total: [% basket.total %]
-                               <input type="hidden" class="basket" name="basket" value="[% basket.basketno %]" />
-                           </li>
-                           [% END %]
-                       [% END %]
-                       </ul>
-                   </div>
-                   </fieldset>
-                   </div>
-                   </form>
-
-                       </div> 
-                       
-                   <div class="yui-u first"> 
-                       <form action="" method="post" id="groupingform" onsubmit="return submitForm(this)">
-                                       <fieldset id="various" class="brief">
-                                       <ol>
-                                               <li><label for="basketgroupname">Basket Group Name:</label>
-                                                       <input type="text" name="basketgroupname" id="basketgroupname" value="[% name %]" /></li>
-                                               <li><label for="billingplace">Billing Place:</label>
-                                                       <select name="billingplace" id="billingplace" style="width:13em;">
-                                                               [% FOREACH billingplaceloo IN billingplaceloop %]
-                                       [% IF ( billingplaceloo.selected ) %]<option value="[% billingplaceloo.value %]" selected="selected">[% billingplaceloo.branchname %]</option>
-                                       [% ELSE %]<option value="[% billingplaceloo.value %]">[% billingplaceloo.branchname %]</option>[% END%]
-                                                               [% END %]
-                                                                                               </select></li>
-                                               <li><label for="deliveryplace">Delivery Place:</label>
-                                                       <select name="deliveryplace" id="deliveryplace" style="width:13em;">
-                                                               <option value="">--</option>
-                                                               [% FOREACH deliveryplaceloo IN deliveryplaceloop %]
-                                       [% IF ( deliveryplaceloo.selected ) %]<option value="[% deliveryplaceloo.value %]" selected="selected">[% deliveryplaceloo.branchname %]</option>
-                                       [% ELSE %]<option value="[% deliveryplaceloo.value %]">[% deliveryplaceloo.branchname %]</option>[% END %]
-                                                               [% END %]
-                                                                                               </select></li>
-                        <li><p>or</p></li>
-                        <li><label for="freedeliveryplace">Delivery Place:</label>
-                            <textarea cols="26" rows="3" name="freedeliveryplace" id="freedeliveryplace">[% freedeliveryplace %]</textarea></li>
-                                               <li><label for="deliverycomment">Delivery comment:</label>
-                                                       <textarea cols="26" rows="3" name="deliverycomment" id="deliverycomment">[% deliverycomment %]</textarea>
-                                               </li>
-                                               <li><span class="label">Baskets in this group:</span>
-                                                       <ul class="draglist" id="bg">
-                                                               [% FOREACH selectedbasket IN selectedbaskets %]
-                                                   <li class="grouped" id="b-[% selectedbasket.basketno %]" >
-                                                       <a href="basket.pl?basketno=[% selectedbasket.basketno %]">
-                                                       [% IF ( selectedbasket.basketname ) %]
-                                                           [% selectedbasket.basketname %]
-                                                       [% ELSE %]
-                                                           No name, basketnumber: [% selectedbasket.basketno %]
-                                                       [% END %]
-                                                       </a>, <br />
-                                                       Total: [% selectedbasket.total %]
-                                                       <input type="hidden" class="basket" name="basket" value="[% selectedbasket.basketno %]" />
-                                                   </li>
-                                           [% END %]
-                                                       </ul>
-                                               </li>
-                                               <li><label><input type="checkbox" id="close" name="close" /> Close basket group</label></li>
-                                               </ol>
-                                       </fieldset>
-
-                       <fieldset class="action"><input type="hidden" name="booksellerid" value="[% booksellerid %]" />
-                               [% IF ( basketgroupid ) %]
-                                       <input type="hidden" name="basketgroupid" value="[% basketgroupid %]" />
-                               [% END %]
-                               <input type="hidden" name="op" value="attachbasket" />
-                               <input type="submit" value="Save" />
-                       </fieldset>
-                               </form>
-                       </div> 
-               </div>   
-    </div> 
+    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a> &rsaquo; <a href="/cgi-bin/koha/acqui/basketgroup.pl?booksellerid=[% booksellerid %]">Basket grouping</a> &rsaquo; Add basket group for [% booksellername |html %]</div>
 [% ELSE %]
-       <div class="yui-g">
-       <div id="basket_groups" class="toptabs">
-       <ul class="ui-tabs-nav">
-        [% UNLESS ( closed ) %]<li class="ui-tabs-selected"><a href="#opened">Open</a></li>
-        [% ELSE%]<li><a href="#opened">Open</a></li>[% END %]
-        [% IF ( closed ) %]<li class="ui-tabs-selected"><a href="#closed">Closed</a></li>
-        [% ELSE %]<li><a href="#closed">Closed</a></li>[% END %]
-    </ul>
-    <div id="opened">
-               <table>
-                       <thead>
-                               <tr>
-                                       <th>Basket Group</th><th colspan="3">Action</th>
-                               </tr>
-                       </thead>
-                       <tbody>
-                       [% FOREACH basketgroup IN basketgroups %]
-                               [% UNLESS ( basketgroup.closed ) %]
-                                       <tr>
-                                               <td><a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&amp;booksellerid=[% basketgroup.booksellerid %]&amp;basketgroupid=[% basketgroup.id %]">[% IF ( basketgroup.name ) %]
-                                                                                                       [% basketgroup.name %]
-                                                                                               [% ELSE %]
-                                                                                                       Basket group no. [% basketgroup.id %]
-                                                                                               [% END %]</a>
-                                               </td>
-                                                       <td>
-                                                               <input type="button" onclick="closeandprint([% basketgroup.id %])" value="Close and Print" />
-                                                       </td>
-                                                       <td>
-                                                               <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="add" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Edit" /></form>
-                                                       </td>
-                                                       <td>
-                                                               <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="delete" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Delete" /></form>
-                                                       </td>
-                                       </tr>
-                               [% END %]
-                       [% END %]
-                       </tbody>
-               </table>
-    </div>
-    <div id="closed">
-               <table>
-                       <thead>
-                               <tr>
-                                       <th>Basket Group</th><th colspan="3">Action</th>
-                               </tr>
-                       </thead>
-                       <tbody>
-                               [% FOREACH basketgroup IN basketgroups %]
-                               [% IF ( basketgroup.closed ) %]
-                               <tr>
-                               <td>
-                                       <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=reopen&amp;booksellerid=[% basketgroup.booksellerid %]&amp;basketgroupid[% basketgroup.id %]">[% IF ( basketgroup.name ) %]
-                                                                                       [% basketgroup.name %]
-                                                                               [% ELSE %]
-                                                                                       Basket group no. [% basketgroup.id %]
-                                                                               [% END %]</a>
-                                       </td>
-                                       <td>
-                                                       <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="reopen" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Reopen" /></form>
-                                               </td>
-                                               <td>
-                                                       <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="print" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Print" /></form>
-                                               </td>
-                               </tr>
-                               [% END %]
-                               [% END %]
-                               </tbody>
-                       </table>
-                       </div>
-                   </div>
-                   </div>
+    <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a> &rsaquo; Basket grouping</div>
 [% END %]
 
-[% INCLUDE 'intranet-bottom.inc' %]
+<div id="doc3" class="yui-t2">
+    <div id="bd">
+        <div id="yui-main">
+            <div class="yui-b">
+                [% IF ( grouping ) %]
+                    [% IF (closedbg) %]
+                        <div id="toolbar" class="btn-toolbar">
+                            <div class="btn-group"><a href="[% script_name %]?op=reopen&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]&amp;mode=singlebg" class="btn btn-default btn-sm" id="reopenbutton"><i class="fa fa-download"></i> Reopen this basket group</a></div>
+                            <div class="btn-group"><a href="[% script_name %]?op=export&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]" class="btn btn-default btn-sm" id="exportbutton"><i class="fa fa-download"></i> Export this basket group as CSV</a></div>
+                            <div class="btn-group"><a href="[% script_name %]?op=print&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]" class="btn btn-default btn-sm" id="printbutton"><i class="fa fa-download"></i> Print this basket group in PDF</a></div>
+                            <div class="btn-group"><a href="[% script_name %]?op=ediprint&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]" class="btn btn-default btn-sm" id="printbutton"><i class="fa fa-download"></i> Generate EDIFACT order</a></div>
+                        </div>
+                    [% END %]
+                    [% IF (name && closedbg) %]
+                        <h1>Basket group [% name %] ([% basketgroupid %]) for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
+                    [% ELSIF (name) %]
+                        <h1>Edit basket group [% name %] ([% basketgroupid %]) for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
+                    [% ELSE %]
+                        <h1>Add basket group for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
+                    [% END %]
+                    <div id="basketgroupcolumns" class="yui-g">
+                        [% UNLESS (closedbg) %]
+                            <div class="yui-u">
+                                <form action="[% scriptname %]" method="post" name="basketgroups" id="basketgroups">
+                                    <div id="groups">
+                                        <fieldset class="brief">
+                                            <div class="workarea_alt" >
+                                                <h3>Ungrouped baskets</h3>
+                                                <ul id="ungrouped" class="draglist_alt">
+                                                    [% IF ( baskets ) %]
+                                                        [% FOREACH basket IN baskets %]
+                                                            <li class="ungrouped" id="b-[% basket.basketno %]" >
+                                                                <a href="basket.pl?basketno=[% basket.basketno %]">
+                                                                    [% IF ( basket.basketname ) %]
+                                                                        [% basket.basketname %]
+                                                                    [% ELSE %]
+                                                                        No name, basketnumber: [% basket.basketno %]
+                                                                    [% END %]
+                                                                </a>, <br />
+                                                                Total: [% basket.total | $Price %]
+                                                                <input type="hidden" class="basket" name="basket" value="[% basket.basketno %]" />
+                                                            </li>
+                                                        [% END %]
+                                                    [% END %]
+                                                </ul>
+                                            </div>
+                                        </fieldset>
+                                    </div>
+                                </form>
+                            </div>
+                        [% END %]
+                        <div class="yui-u first">
+                            <form action="" method="post" id="groupingform" onsubmit="return submitForm(this)">
+                                <fieldset id="various" class="brief">
+                                    <ol>
+                                        [% UNLESS (closedbg) %]
+                                            <li>
+                                                <label for="basketgroupname">Basket group name:</label>
+                                                <input type="text" name="basketgroupname" id="basketgroupname" value="[% name %]" class="focus" />
+                                            </li>
+                                        [% ELSE %]
+                                            <input type="hidden" name="basketgroupname" id="basketgroupname" value="[% name %]" />
+                                        [% END %]
+                                        <li>
+                                            [% UNLESS (closedbg) %]
+                                                <label for="billingplace">Billing place:</label>
+                                                <select name="billingplace" id="billingplace" style="width:13em;">
+                                                    <option value="">--</option>
+                                                    [% PROCESS options_for_libraries libraries => Branches.all( selected => billingplace ) %]
+                                                </select>
+                                            [% ELSE %]
+                                                <span class="label">Billing place:</span>
+                                                <input name="billingplace" id="billingplace" type ="hidden" value="[% billingplace %]" />[% Branches.GetName( billingplace ) %]
+                                            [% END %]
+                                        </li>
+                                        [% UNLESS (closedbg) %]
+                                            <li>
+                                                <label for="deliveryplace">Delivery place:</label>
+                                                <select name="deliveryplace" id="deliveryplace" style="width:13em;">
+                                                    <option value="">--</option>
+                                                    [% PROCESS options_for_libraries libraries => Branches.all( selected => deliveryplace ) %]
+                                                <select>
+                                            </li>
+                                            <li><p>or</p></li>
+                                            <li>
+                                                <label for="freedeliveryplace">Delivery place:</label>
+                                                <textarea cols="26" rows="3" name="freedeliveryplace" id="freedeliveryplace">[% freedeliveryplace %]</textarea>
+                                            </li>
+                                            [% ELSE %]
+                                                <li>
+                                                    <span class="label">Delivery place:</span>
+                                                    [% IF (freedeliveryplace) %]
+                                                        <input name="freedeliveryplace" id="freedeliveryplace" type ="hidden" value="[% freedeliveryplace %]" />[% freedeliveryplace %]
+                                                        <input name="deliveryplace" id="deliveryplace" type ="hidden" value="" />
+                                                    [% ELSE %]
+                                                        <input name="deliveryplace" id="deliveryplace" type ="hidden" value="[% deliveryplace %]" />[% Branches.GetName( deliveryplace ) %]
+                                                        <input name="freedeliveryplace" id="freedeliveryplace" type ="hidden" value="" />
+                                                    [% END %]
+                                                </li>
+                                            [% END %]
+                                            <li>
+                                                [% UNLESS (closedbg) %]
+                                                    <label for="deliverycomment">Delivery comment:</label>
+                                                    <textarea cols="26" rows="3" name="deliverycomment" id="deliverycomment">[% deliverycomment %]</textarea>
+                                                [% ELSE %]
+                                                    <span class="label">Delivery comment:</span>[% deliverycomment %]
+                                                    <input name="deliverycomment" id="deliverycomment" type="hidden" value = "[% deliverycomment %]" />
+                                                [% END %]
+                                            </li>
+                                            <li>
+                                                <span class="label">Baskets in this group:</span>
+                                                [% UNLESS (closedbg) %]
+                                                    <ul class="draglist" id="bg">
+                                                [% ELSE %]
+                                                    <ul>
+                                                [% END %]
+                                                [% FOREACH selectedbasket IN selectedbaskets %]
+                                                    <li class="grouped" id="b-[% selectedbasket.basketno %]" >
+                                                        <a href="basket.pl?basketno=[% selectedbasket.basketno %]">
+                                                            [% IF ( selectedbasket.basketname ) %]
+                                                                [% selectedbasket.basketname %]
+                                                            [% ELSE %]
+                                                                No name, basketnumber: [% selectedbasket.basketno %]
+                                                            [% END %]
+                                                        </a>, <br />
+                                                        Total: [% selectedbasket.total | $Price %]
+                                                        <input type="hidden" class="basket" name="basket" value="[% selectedbasket.basketno %]" />
+                                                    </li>
+                                                [% END %]
+                                            </ul>
+                                        </li>
+                                            [% UNLESS (closedbg) %]
+                                                <li><label><input type="checkbox" id="closedbg" name="closedbg" />Close basket group</label></li>
+                                            [% ELSE %]
+                                                <input type="hidden" id="closedbg" name="closedbg" value ="1"/>
+                                            [% END %]
+                                    </ol>
+                                </fieldset>
+                                [% UNLESS (closedbg) %]
+                                    <fieldset class="action"><input type="hidden" name="booksellerid" value="[% booksellerid %]" />
+                                        [% IF ( basketgroupid ) %]
+                                            <input type="hidden" name="basketgroupid" value="[% basketgroupid %]" />
+                                        [% END %]
+                                        <input type="hidden" name="op" value="attachbasket" />
+                                        <input type="submit" value="Save" /> <a href="/cgi-bin/koha/acqui/basketgroup.pl?booksellerid=[% booksellerid %]" class="cancel">Cancel</a>
+                                    </fieldset>
+                                [% END %]
+                            </form>
+                        </div>
+                    </div>
+                [% ELSE %]
+                    <div id="toolbar" class="btn-toolbar">
+                        <div class="btn-group"><a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&amp;booksellerid=[% booksellerid %]" class="btn btn-default btn-sm" id="newbasketgroup"><i class="fa fa-plus"></i> New basket group</a></div>
+                    </div>
+                    <h1>Basket grouping for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
+                    <div id="basket_groups" class="toptabs">
+                        <ul class="ui-tabs-nav">
+                            [% UNLESS ( listclosed) %]<li class="ui-tabs-active"><a href="#opened">Open</a></li>
+                            [% ELSE%]<li><a href="#opened">Open</a></li>[% END %]
+                            [% IF ( listclosed) %]<li class="ui-tabs-active"><a href="#closed">Closed</a></li>
+                            [% ELSE %]<li><a href="#closed">Closed</a></li>[% END %]
+                        </ul>
+                        <div id="opened">
+                            <table id="basket_group_opened">
+                                <thead>
+                                    <tr>
+                                        <th>Name</th>
+                                        <th>Number</th>
+                                        <th>Billing place</th>
+                                        <th>Delivery place</th>
+                                        <th>Number of baskets</th>
+                                        <th>Action</th>
+                                    </tr>
+                                </thead>
+                                <tbody>
+                                    [% FOREACH basketgroup IN basketgroups %]
+                                        [% UNLESS ( basketgroup.closed ) %]
+                                            <tr>
+                                                <td>[% IF ( basketgroup.name ) %]
+                                                    [% basketgroup.name %]
+                                                    [% ELSE %]
+                                                        Basket group no. [% basketgroup.id %]
+                                                    [% END %]
+                                                </td>
+                                                <td>[% basketgroup.id %]</td>
+                                                <td>[% Branches.GetName( basketgroup.billingplace ) %]</td>
+                                                <td>[% IF (basketgroup.freedeliveryplace) %]Free delivery place[% ELSE %][% Branches.GetName( basketgroup.deliveryplace ) %][% END %]</td>
+                                                <td>[% basketgroup.basketsqty %]</td>
+                                                <td>
+                                                    <input type="button" onclick="closeandprint('[% basketgroup.id %]');" value="Close and export as PDF" />
+                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="add" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Edit" /></form>
+                                                    [% UNLESS basketgroup.basketsqty %]
+                                                        <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="delete" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Delete" /></form>
+                                                    [% END %]
+                                                </td>
+                                            </tr>
+                                        [% END %]
+                                    [% END %]
+                                </tbody>
+                            </table>
+                        </div>
+                        <div id="closed">
+                            <table id="basket_group_closed">
+                                <thead>
+                                    <tr>
+                                        <th>Name</th>
+                                        <th>Number</th>
+                                        <th>Billing place</th>
+                                        <th>Delivery place</th>
+                                        <th>Number of baskets</th>
+                                        <th>Action</th>
+                                    </tr>
+                                </thead>
+                                <tbody>
+                                    [% FOREACH basketgroup IN basketgroups %]
+                                        [% IF ( basketgroup.closed ) %]
+                                            <tr>
+                                                <td>
+                                                    [% IF ( basketgroup.name ) %]
+                                                        [% basketgroup.name %]
+                                                        [% ELSE %]
+                                                            Basket group no. [% basketgroup.id %]
+                                                        [% END %]
+                                                </td>
+                                                <td>[% basketgroup.id %]</td>
+                                                <td>[% Branches.GetName( basketgroup.billingplace ) %]</td>
+                                                <td>[% IF (basketgroup.freedeliveryplace) %]Free delivery place[% ELSE %][% Branches.GetName( basketgroup.deliveryplace ) %][% END %]</td>
+                                                <td>[% basketgroup.basketsqty %]</td>
+                                                <td>
+                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="add" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="View" /></form>
+                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="reopen" /><input type="hidden" name="booksellerid" value="[% basketgroup.booksellerid %]" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Reopen" /></form>
+                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="print" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Export as PDF" /></form>
+                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="export" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Export as CSV" /></form>
+                                                    <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="get"><input type="hidden" name="op" value="ediprint" /><input type="hidden" name="basketgroupid" value="[% basketgroup.id %]" /><input type="submit" value="Generate EDIFACT order" /></form>
+                                                </td>
+                                            </tr>
+                                        [% END %]
+                                    [% END %]
+                                </tbody>
+                            </table>
+                        </div>
+                    </div>
+                [% END %]
+            </div>
+        </div>
+        <div class="yui-b">
+            [% IF ( booksellerid ) %]
+                [% INCLUDE 'vendor-menu.inc' %]
+            [% END %]
+            [% INCLUDE 'acquisitions-menu.inc' %]
+        </div>
+    </div>
+    [% INCLUDE 'intranet-bottom.inc' %]