Bug 9807 : Make it possible to view a basket group without reopening it
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / basketgroup.tt
1 [% USE Branches %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Basket grouping for [% booksellername |html %]</title>
4 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
5 [% INCLUDE 'doc-head-close.inc' %]
6 [% INCLUDE 'datatables.inc' %]
7 <script type="text/javascript" src="[% yuipath %]/utilities/utilities.js"></script>
8 <script type="text/javascript" src="[% yuipath %]/button/button-min.js"></script>
9 <script type="text/javascript" src="[% yuipath %]/container/container_core-min.js"></script>
10 <script type="text/javascript" src="[% yuipath %]/menu/menu-min.js"></script>
11 <script type="text/javascript" src="[% themelang %]/js/acq.js"></script>
12 [% IF ( grouping ) %]
13 <script type="text/javascript" src="[% yuipath %]/yahoo-dom-event/yahoo-dom-event.js"></script>
14 <script type="text/javascript" src="[% yuipath %]/animation/animation-min.js"></script>
15 <script type="text/javascript" src="[% yuipath %]/dragdrop/dragdrop-min.js"></script>
16 <script type="text/javascript" src="[% yuipath %]/element/element-min.js"></script>
17 <style type="text/css">
18 /*margin and padding on body element
19   can introduce errors in determining
20   element position and are not recommended;
21   we turn them off as a foundation for YUI
22   CSS treatments. */
23 #basketgroupcolumns {
24     width: 58em;
25 }
26 #ungrouped {
27         overflow: auto;
28         height: 400px;
29 }
30
31 .draglist{
32         width: 200px;
33         height: 300px;
34         overflow: auto;
35 }
36
37 div.workarea_alt { padding: 5px; float:left; width: 95%;}
38 div.closed { background-color: pink; padding:10px; float:left; width: 45%;}
39
40 ul.draglist {
41     position: relative;
42     background: #EEE;
43     padding-bottom:10;
44     border: 1px inset gray;
45     list-style: none;
46     margin:0;
47     padding: 5px;
48 }
49
50 ul.draglist li {
51     margin: 1px;
52     cursor: move;
53     list-style: none;
54 }
55
56 ul.draglist_alt {
57     position: relative;
58     border: 1px solid gray;
59     list-style: none;
60     margin: 0;
61     background: #f7f7f7;
62     padding: 5px;
63     cursor: move;
64 }
65
66 ul.draglist_alt li {
67     margin: 1px;
68     list-style: none;
69 }
70
71 li.grouped {
72     background-color: #D1E6EC;
73     border:1px solid #7EA6B2;
74     list-style: none;
75 }
76
77 li.ungrouped {
78     background-color: #D8D4E2;
79     border:1px solid #6B4C86;
80 }
81
82 fieldset.various li {
83     list-style: none;
84     clear: none;
85 }
86
87 </style>
88  [% END %]
89 <script type="text/javascript">
90 //<![CDATA[
91         YAHOO.util.Event.onDOMReady(DDApp.init, DDApp, true);
92
93 var MSG_CONFIRM_CLOSE_BASKETGROUP = _("Are you sure you want to close this basketgroup?");
94 var MSG_CLOSE_EMPTY_BASKET = _("Why close an empty basket?");
95 var MSG_SAVE_BEFORE_PRINTING = _("You need to save the page before printing");
96 var MSG_REOPEN_BASKETGROUP = _("reopen basketgroup");
97 var MSG_FILE_DOWNLOAD_ERROR = _("Error downloading the file");
98
99 function submitForm(form) {
100     if (form.close.checked == true) {
101         var input = document.createElement("input");
102         input.setAttribute("type", "hidden");
103         input.setAttribute("name", "closed");
104         input.setAttribute("value", "1");
105         form.appendChild(input);
106     }
107 }
108
109  $(document).ready(function() {
110     $("#basket_groups").tabs();
111
112     $("table").dataTable($.extend(true, {}, dataTablesDefaults, {
113         "aoColumnDefs": [
114             { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
115         ],
116         sDom: 't',
117         "bAutoWidth": false
118     } ));
119
120  });
121
122
123 //]]>
124 </script>
125 </head>
126 <body id="acq_basketgroup" class="acq">
127 [% INCLUDE 'header.inc' %]
128 [% INCLUDE 'acquisitions-search.inc' %]
129
130 <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;
131 [% IF ( grouping ) %]
132     <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>
133 [% ELSE %]
134     <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a> &rsaquo; Basket grouping</div>
135 [% END %]
136
137 <div id="doc3" class="yui-t2">
138     <div id="bd">
139     <div id="yui-main">
140     <div class="yui-b">
141
142 [% IF ( grouping ) %]
143     [% IF (closedbg) %]
144         <div id="toolbar" class="btn-toolbar">
145             <div class="btn-group"><a href="[% script_name %]?op=reopen&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]&amp;mode=singlebg" class="btn btn-small" id="reopenbutton"><i class="icon-download"></i> Reopen this basket group</a></div>
146             <div class="btn-group"><a href="[% script_name %]?op=export&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="exportbutton"><i class="icon-download"></i> Export this basket group as CSV</a></div>
147             <div class="btn-group"><a href="[% script_name %]?op=print&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="printbutton"><i class="icon-download"></i> Print this basket group in PDF</a></div>
148         </div>
149     [% ELSE %]
150     <div class="btn-group"><a href="[% script_name %]?op=delete&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="delbutton"><i class="icon-remove"></i> Delete basket group</a></div>
151     [% END %]
152     [% IF (name && closedgb) %]
153         <h1>Basket group [% name %] ([% basketgroupid %]) for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
154     [% ELSIF (name) %]
155         <h1>Edit basket group [% name %] ([% basketgroupid %]) for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
156     [% ELSE %]
157     <h1>Add basket group for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
158     [% END %]
159         <div id="basketgroupcolumns" class="yui-g">
160         [% UNLESS (closedbg) %]
161                     <div class="yui-u">
162                                 <form action="[% scriptname %]" method="post" name="basketgroups" id="basketgroups">
163                     <div id="groups">
164                     <fieldset class="brief">
165                     <div class="workarea_alt" >
166                 <h3>Ungrouped baskets</h3>
167                     <ul id="ungrouped" class="draglist_alt">
168                     [% IF ( baskets ) %]
169                         [% FOREACH basket IN baskets %]
170                             <li class="ungrouped" id="b-[% basket.basketno %]" >
171                                 <a href="basket.pl?basketno=[% basket.basketno %]">
172                                 [% IF ( basket.basketname ) %]
173                                     [% basket.basketname %]
174                                 [% ELSE %]
175                                     No name, basketnumber: [% basket.basketno %]
176                                 [% END %]
177                                 </a>, <br />
178                                 Total: [% basket.total %]
179                                 <input type="hidden" class="basket" name="basket" value="[% basket.basketno %]" />
180                             </li>
181                             [% END %]
182                         [% END %]
183                         </ul>
184                     </div>
185                     </fieldset>
186                     </div>
187                     </form>
188                         </div> 
189        [% END %]
190                     <div class="yui-u first"> 
191                         <form action="" method="post" id="groupingform" onsubmit="return submitForm(this)">
192                                         <fieldset id="various" class="brief">
193                                         <ol>
194                     [% UNLESS (closedbg) %]
195                         <li><label for="basketgroupname">Basket group name:</label>
196                                                        <input type="text" name="basketgroupname" id="basketgroupname" value="[% name %]" class="focus" /></li>
197                     [% ELSE %]
198                         <input type="hidden" name="basketgroupname" id="basketgroupname" value="[% name %]" />
199                     [% END %]
200                         <li>
201                             [% UNLESS (closedbg) %]
202                             <label for="billingplace">Billing place:</label>
203                                                         <select name="billingplace" id="billingplace" style="width:13em;">
204                                 <option value="">--</option>
205                                                                 [% FOREACH billingplaceloo IN billingplaceloop %]
206                                         [% IF ( billingplaceloo.selected ) %]<option value="[% billingplaceloo.value %]" selected="selected">[% billingplaceloo.branchname %]</option>
207                                         [% ELSE %]<option value="[% billingplaceloo.value %]">[% billingplaceloo.branchname %]</option>[% END%]
208                                                                 [% END %]
209                                 </select>
210                             [% ELSE %]
211                                 <span class="label">Billing place:</span>
212                                 [% FOREACH billingplaceloo IN billingplaceloop %]
213                                     [% IF ( billingplaceloo.selected ) %]
214                                         <input name="billingplace" id="billingplace" type ="hidden" value="[% billingplaceloo.value %]" />[% billingplaceloo.branchname %]
215                                     [% END %]
216                                 [% END %]
217                             [% END %]
218                         </li>
219                         [% UNLESS (closedbg) %]
220                             <li>
221                                 <label for="deliveryplace">Delivery place:</label>
222                                                         <select name="deliveryplace" id="deliveryplace" style="width:13em;">
223                                                                 <option value="">--</option>
224                                                                 [% FOREACH deliveryplaceloo IN deliveryplaceloop %]
225                                         [% IF ( deliveryplaceloo.selected ) %]<option value="[% deliveryplaceloo.value %]" selected="selected">[% deliveryplaceloo.branchname %]</option>
226                                         [% ELSE %]<option value="[% deliveryplaceloo.value %]">[% deliveryplaceloo.branchname %]</option>[% END %]
227                                                                 [% END %]
228                                 <select>
229                             </li>
230                         <li><p>or</p></li>
231                         <li><label for="freedeliveryplace">Delivery place:</label>
232                             <textarea cols="26" rows="3" name="freedeliveryplace" id="freedeliveryplace">[% freedeliveryplace %]</textarea></li>
233                         [% ELSE %]
234                             <li>
235                                 <span class="label">Delivery place:</span>
236                                 [% IF (freedeliveryplace) %]
237                                     <input name="freedeliveryplace" id="freedeliveryplace" type ="hidden" value="[% freedeliveryplace %]" />[% freedeliveryplace %]
238                                     <input name="deliveryplace" id="deliveryplace" type ="hidden" value="" />
239                                 [% ELSE %]
240                                     [% FOREACH deliveryplaceloo IN deliveryplaceloop %]
241                                         [% IF ( deliveryplaceloo.selected ) %]
242                                             <input name="deliveryplace" id="deliveryplace" type ="hidden" value="[% deliveryplaceloo.value %]" />[% deliveryplaceloo.branchname %]
243                                         [% END %]
244                                     [% END %]
245                                     <input name="freedeliveryplace" id="freedeliveryplace" type ="hidden" value="" />
246                                 [% END %]
247                             </li>
248                         [% END %]
249                         <li>
250                             [% UNLESS (closedbg) %]
251                                 <label for="deliverycomment">Delivery comment:</label>
252                                 <textarea cols="26" rows="3" name="deliverycomment" id="deliverycomment">[% deliverycomment %]</textarea>
253                             [% ELSE %]
254                                 <span class="label">Delivery comment:</span>[% deliverycomment %]
255                                 <input name="deliverycomment" id="deliverycomment" type="hidden" value = "[% deliverycomment %]" />
256                             [% END %]
257                                                 </li>
258                                                 <li><span class="label">Baskets in this group:</span>
259                             [% UNLESS (closedbg) %]
260                                                         <ul class="draglist" id="bg">
261                             [% ELSE %]
262                                 <ul>
263                             [% END %]
264                                                                 [% FOREACH selectedbasket IN selectedbaskets %]
265                                                     <li class="grouped" id="b-[% selectedbasket.basketno %]" >
266                                                         <a href="basket.pl?basketno=[% selectedbasket.basketno %]">
267                                                         [% IF ( selectedbasket.basketname ) %]
268                                                             [% selectedbasket.basketname %]
269                                                         [% ELSE %]
270                                                             No name, basketnumber: [% selectedbasket.basketno %]
271                                                         [% END %]
272                                                         </a>, <br />
273                                                         Total: [% selectedbasket.total %]
274                                                         <input type="hidden" class="basket" name="basket" value="[% selectedbasket.basketno %]" />
275                                                     </li>
276                                             [% END %]
277                                                         </ul>
278                                                 </li>
279                        [% UNLESS (closedbg) %]
280                         <li><label><input type="checkbox" id="closedbg" name="closedbg" />Close basket group</label></li>
281                        [% ELSE %]
282                            <input type="hidden" id="closedbg" name="closedbg" value ="1"/>
283                        [% END %]
284                                                 </ol>
285                                         </fieldset>
286                     [% UNLESS (closedbg) %]
287                         <fieldset class="action"><input type="hidden" name="booksellerid" value="[% booksellerid %]" />
288                                 [% IF ( basketgroupid ) %]
289                                         <input type="hidden" name="basketgroupid" value="[% basketgroupid %]" />
290                                 [% END %]
291                                 <input type="hidden" name="op" value="attachbasket" />
292                         <input type="submit" value="Save" /> <a href="/cgi-bin/koha/acqui/basketgroup.pl?booksellerid=[% booksellerid %]" class="cancel">Cancel</a>
293                         </fieldset>
294                     [% END %]
295                                 </form>
296                         </div> 
297                 </div>   
298 [% ELSE %]
299
300     <div id="toolbar" class="btn-toolbar">
301         <div class="btn-group"><a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="newbasketgroup"><i class="icon-plus"></i> New basket group</a></div>
302     </div>
303     <h1>Basket grouping for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
304
305         <div id="basket_groups" class="toptabs">
306         <ul class="ui-tabs-nav">
307         [% UNLESS ( listclosed) %]<li class="ui-tabs-selected"><a href="#opened">Open</a></li>
308         [% ELSE%]<li><a href="#opened">Open</a></li>[% END %]
309         [% IF ( listclosed) %]<li class="ui-tabs-selected"><a href="#closed">Closed</a></li>
310         [% ELSE %]<li><a href="#closed">Closed</a></li>[% END %]
311     </ul>
312     <div id="opened">
313         <table id="basket_group_opened">
314                         <thead>
315                                 <tr>
316                                         <th>Name</th>
317                                         <th>Number</th>
318                                         <th>Billing place</th>
319                                         <th>Delivery place</th>
320                                         <th>Number of baskets</th>
321                                         <th>Action</th>
322                                 </tr>
323                         </thead>
324                         <tbody>
325                         [% FOREACH basketgroup IN basketgroups %]
326                                 [% UNLESS ( basketgroup.closed ) %]
327                                         <tr>
328                                                 <td>[% IF ( basketgroup.name ) %]
329                                                                                                         [% basketgroup.name %]
330                                                                                                 [% ELSE %]
331                                                                                                         Basket group no. [% basketgroup.id %]
332                                                                                                 [% END %]
333                                                 </td>
334                                     <td>[% basketgroup.id %]</td>
335                                     <td>[% Branches.GetName( basketgroup.billingplace ) %]</td>
336                                     <td>[% IF (basketgroup.freedeliveryplace) %]Free delivery place[% ELSE %][% Branches.GetName( basketgroup.deliveryplace ) %][% END %]</td>
337                                     <td>[% basketgroup.basketsqty %]</td>
338                                                         <td>
339                                                              <input type="button" onclick="closeandprint('[% basketgroup.id %]');" value="Close and print" />
340                                                                 <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>
341                                                                 <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>
342                                                         </td>
343                                         </tr>
344                                 [% END %]
345                         [% END %]
346                         </tbody>
347                 </table>
348     </div>
349     <div id="closed">
350         <table id="basket_group_closed">
351                         <thead>
352                                 <tr>
353                                         <th>Name</th>
354                                         <th>Number</th>
355                                         <th>Billing place</th>
356                                         <th>Delivery place</th>
357                                         <th>Number of baskets</th>
358                                         <th>Action</th>
359                                 </tr>
360                         </thead>
361                         <tbody>
362                                 [% FOREACH basketgroup IN basketgroups %]
363                                 [% IF ( basketgroup.closed ) %]
364                                 <tr>
365                                 <td>
366                                      [% IF ( basketgroup.name ) %]
367                                                                                         [% basketgroup.name %]
368                                                                                 [% ELSE %]
369                                                                                         Basket group no. [% basketgroup.id %]
370                                                                                 [% END %]
371                                         </td>
372                                     <td>[% basketgroup.id %]</td>
373                                     <td>[% Branches.GetName( basketgroup.billingplace ) %]</td>
374                                     <td>[% IF (basketgroup.freedeliveryplace) %]Free delivery place[% ELSE %][% Branches.GetName( basketgroup.deliveryplace ) %][% END %]</td>
375                                     <td>[% basketgroup.basketsqty %]</td>
376                                         <td>
377                             <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>
378                                                         <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>
379                                                         <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>
380                                                         <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>
381                     </td>
382                                 </tr>
383                                 [% END %]
384                                 [% END %]
385                                 </tbody>
386                         </table>
387                         </div>
388         </div>
389 [% END %]
390 </div>
391 </div>
392 <div class="yui-b">
393 [% IF ( booksellerid ) %]
394 [% INCLUDE 'vendor-menu.inc' %]
395 [% END %]
396 [% INCLUDE 'acquisitions-menu.inc' %]
397 </div>
398 </div>
399 [% INCLUDE 'intranet-bottom.inc' %]