Bug 14915: Use Font Awesome instead of Glyphicons for the staff intranet
[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="[% themelang %]/lib/yui/utilities/utilities.js"></script>
8 <script type="text/javascript" src="[% themelang %]/lib/yui/button/button-min.js"></script>
9 <script type="text/javascript" src="[% themelang %]/lib/yui/container/container_core-min.js"></script>
10 <script type="text/javascript" src="[% themelang %]/lib/yui/menu/menu-min.js"></script>
11 <script type="text/javascript" src="[% themelang %]/js/basketgroup.js"></script>
12 [% IF ( grouping ) %]
13 <script type="text/javascript" src="[% themelang %]/lib/yui/yahoo-dom-event/yahoo-dom-event.js"></script>
14 <script type="text/javascript" src="[% themelang %]/lib/yui/animation/animation-min.js"></script>
15 <script type="text/javascript" src="[% themelang %]/lib/yui/dragdrop/dragdrop-min.js"></script>
16 <script type="text/javascript" src="[% themelang %]/lib/yui/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         "bAutoWidth": false,
117         "sPaginationType": "four_button"
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                 [% IF ( grouping ) %]
142                     [% IF (closedbg) %]
143                         <div id="toolbar" class="btn-toolbar">
144                             <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="fa fa-download"></i> Reopen this basket group</a></div>
145                             <div class="btn-group"><a href="[% script_name %]?op=export&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="exportbutton"><i class="fa fa-download"></i> Export this basket group as CSV</a></div>
146                             <div class="btn-group"><a href="[% script_name %]?op=print&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="printbutton"><i class="fa fa-download"></i> Print this basket group in PDF</a></div>
147                         </div>
148                     [% ELSE %]
149                         <div class="btn-group"><a href="[% script_name %]?op=delete&amp;basketgroupid=[% basketgroupid %]&amp;booksellerid=[% booksellerid %]" class="btn btn-small" id="delbutton"><i class="fa fa-remove"></i> Delete basket group</a></div>
150                     [% END %]
151                     [% IF (name && closedbg) %]
152                         <h1>Basket group [% name %] ([% basketgroupid %]) for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
153                     [% ELSIF (name) %]
154                         <h1>Edit basket group [% name %] ([% basketgroupid %]) for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
155                     [% ELSE %]
156                         <h1>Add basket group for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
157                     [% END %]
158                     <div id="basketgroupcolumns" class="yui-g">
159                         [% UNLESS (closedbg) %]
160                             <div class="yui-u">
161                                 <form action="[% scriptname %]" method="post" name="basketgroups" id="basketgroups">
162                                     <div id="groups">
163                                         <fieldset class="brief">
164                                             <div class="workarea_alt" >
165                                                 <h3>Ungrouped baskets</h3>
166                                                 <ul id="ungrouped" class="draglist_alt">
167                                                     [% IF ( baskets ) %]
168                                                         [% FOREACH basket IN baskets %]
169                                                             <li class="ungrouped" id="b-[% basket.basketno %]" >
170                                                                 <a href="basket.pl?basketno=[% basket.basketno %]">
171                                                                     [% IF ( basket.basketname ) %]
172                                                                         [% basket.basketname %]
173                                                                     [% ELSE %]
174                                                                         No name, basketnumber: [% basket.basketno %]
175                                                                     [% END %]
176                                                                 </a>, <br />
177                                                                 Total: [% basket.total %]
178                                                                 <input type="hidden" class="basket" name="basket" value="[% basket.basketno %]" />
179                                                             </li>
180                                                         [% END %]
181                                                     [% END %]
182                                                 </ul>
183                                             </div>
184                                         </fieldset>
185                                     </div>
186                                 </form>
187                             </div>
188                         [% END %]
189                         <div class="yui-u first">
190                             <form action="" method="post" id="groupingform" onsubmit="return submitForm(this)">
191                                 <fieldset id="various" class="brief">
192                                     <ol>
193                                         [% UNLESS (closedbg) %]
194                                             <li>
195                                                 <label for="basketgroupname">Basket group name:</label>
196                                                 <input type="text" name="basketgroupname" id="basketgroupname" value="[% name %]" class="focus" />
197                                             </li>
198                                         [% ELSE %]
199                                             <input type="hidden" name="basketgroupname" id="basketgroupname" value="[% name %]" />
200                                         [% END %]
201                                         <li>
202                                             [% UNLESS (closedbg) %]
203                                                 <label for="billingplace">Billing place:</label>
204                                                 <select name="billingplace" id="billingplace" style="width:13em;">
205                                                     <option value="">--</option>
206                                                     [% FOREACH billingplaceloo IN billingplaceloop %]
207                                                         [% IF ( billingplaceloo.selected ) %]<option value="[% billingplaceloo.value %]" selected="selected">[% billingplaceloo.branchname %]</option>
208                                                         [% ELSE %]<option value="[% billingplaceloo.value %]">[% billingplaceloo.branchname %]</option>[% END%]
209                                                     [% END %]
210                                                 </select>
211                                             [% ELSE %]
212                                                 <span class="label">Billing place:</span>
213                                                 [% FOREACH billingplaceloo IN billingplaceloop %]
214                                                     [% IF ( billingplaceloo.selected ) %]
215                                                         <input name="billingplace" id="billingplace" type ="hidden" value="[% billingplaceloo.value %]" />[% billingplaceloo.branchname %]
216                                                     [% END %]
217                                                 [% END %]
218                                             [% END %]
219                                         </li>
220                                         [% UNLESS (closedbg) %]
221                                             <li>
222                                                 <label for="deliveryplace">Delivery place:</label>
223                                                 <select name="deliveryplace" id="deliveryplace" style="width:13em;">
224                                                     <option value="">--</option>
225                                                     [% FOREACH deliveryplaceloo IN deliveryplaceloop %]
226                                                         [% IF ( deliveryplaceloo.selected ) %]<option value="[% deliveryplaceloo.value %]" selected="selected">[% deliveryplaceloo.branchname %]</option>
227                                                         [% ELSE %]<option value="[% deliveryplaceloo.value %]">[% deliveryplaceloo.branchname %]</option>[% END %]
228                                                     [% END %]
229                                                     <select>
230                                             </li>
231                                             <li><p>or</p></li>
232                                             <li>
233                                                 <label for="freedeliveryplace">Delivery place:</label>
234                                                 <textarea cols="26" rows="3" name="freedeliveryplace" id="freedeliveryplace">[% freedeliveryplace %]</textarea>
235                                             </li>
236                                             [% ELSE %]
237                                                 <li>
238                                                     <span class="label">Delivery place:</span>
239                                                     [% IF (freedeliveryplace) %]
240                                                         <input name="freedeliveryplace" id="freedeliveryplace" type ="hidden" value="[% freedeliveryplace %]" />[% freedeliveryplace %]
241                                                         <input name="deliveryplace" id="deliveryplace" type ="hidden" value="" />
242                                                     [% ELSE %]
243                                                         [% FOREACH deliveryplaceloo IN deliveryplaceloop %]
244                                                             [% IF ( deliveryplaceloo.selected ) %]
245                                                                 <input name="deliveryplace" id="deliveryplace" type ="hidden" value="[% deliveryplaceloo.value %]" />[% deliveryplaceloo.branchname %]
246                                                             [% END %]
247                                                         [% END %]
248                                                         <input name="freedeliveryplace" id="freedeliveryplace" type ="hidden" value="" />
249                                                     [% END %]
250                                                 </li>
251                                             [% END %]
252                                             <li>
253                                                 [% UNLESS (closedbg) %]
254                                                     <label for="deliverycomment">Delivery comment:</label>
255                                                     <textarea cols="26" rows="3" name="deliverycomment" id="deliverycomment">[% deliverycomment %]</textarea>
256                                                 [% ELSE %]
257                                                     <span class="label">Delivery comment:</span>[% deliverycomment %]
258                                                     <input name="deliverycomment" id="deliverycomment" type="hidden" value = "[% deliverycomment %]" />
259                                                 [% END %]
260                                             </li>
261                                             <li>
262                                                 <span class="label">Baskets in this group:</span>
263                                                 [% UNLESS (closedbg) %]
264                                                     <ul class="draglist" id="bg">
265                                                 [% ELSE %]
266                                                     <ul>
267                                                 [% END %]
268                                                 [% FOREACH selectedbasket IN selectedbaskets %]
269                                                     <li class="grouped" id="b-[% selectedbasket.basketno %]" >
270                                                         <a href="basket.pl?basketno=[% selectedbasket.basketno %]">
271                                                             [% IF ( selectedbasket.basketname ) %]
272                                                                 [% selectedbasket.basketname %]
273                                                             [% ELSE %]
274                                                                 No name, basketnumber: [% selectedbasket.basketno %]
275                                                             [% END %]
276                                                         </a>, <br />
277                                                         Total: [% selectedbasket.total %]
278                                                         <input type="hidden" class="basket" name="basket" value="[% selectedbasket.basketno %]" />
279                                                     </li>
280                                                 [% END %]
281                                             </ul>
282                                         </li>
283                                             [% UNLESS (closedbg) %]
284                                                 <li><label><input type="checkbox" id="closedbg" name="closedbg" />Close basket group</label></li>
285                                             [% ELSE %]
286                                                 <input type="hidden" id="closedbg" name="closedbg" value ="1"/>
287                                             [% END %]
288                                     </ol>
289                                 </fieldset>
290                                 [% UNLESS (closedbg) %]
291                                     <fieldset class="action"><input type="hidden" name="booksellerid" value="[% booksellerid %]" />
292                                         [% IF ( basketgroupid ) %]
293                                             <input type="hidden" name="basketgroupid" value="[% basketgroupid %]" />
294                                         [% END %]
295                                         <input type="hidden" name="op" value="attachbasket" />
296                                         <input type="submit" value="Save" /> <a href="/cgi-bin/koha/acqui/basketgroup.pl?booksellerid=[% booksellerid %]" class="cancel">Cancel</a>
297                                     </fieldset>
298                                 [% END %]
299                             </form>
300                         </div>
301                     </div>
302                 [% ELSE %]
303                     <div id="toolbar" class="btn-toolbar">
304                         <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="fa fa-plus"></i> New basket group</a></div>
305                     </div>
306                     <h1>Basket grouping for <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername |html %]</a></h1>
307                     <div id="basket_groups" class="toptabs">
308                         <ul class="ui-tabs-nav">
309                             [% UNLESS ( listclosed) %]<li class="ui-tabs-active"><a href="#opened">Open</a></li>
310                             [% ELSE%]<li><a href="#opened">Open</a></li>[% END %]
311                             [% IF ( listclosed) %]<li class="ui-tabs-active"><a href="#closed">Closed</a></li>
312                             [% ELSE %]<li><a href="#closed">Closed</a></li>[% END %]
313                         </ul>
314                         <div id="opened">
315                             <table id="basket_group_opened">
316                                 <thead>
317                                     <tr>
318                                         <th>Name</th>
319                                         <th>Number</th>
320                                         <th>Billing place</th>
321                                         <th>Delivery place</th>
322                                         <th>Number of baskets</th>
323                                         <th>Action</th>
324                                     </tr>
325                                 </thead>
326                                 <tbody>
327                                     [% FOREACH basketgroup IN basketgroups %]
328                                         [% UNLESS ( basketgroup.closed ) %]
329                                             <tr>
330                                                 <td>[% IF ( basketgroup.name ) %]
331                                                     [% basketgroup.name %]
332                                                     [% ELSE %]
333                                                         Basket group no. [% basketgroup.id %]
334                                                     [% END %]
335                                                 </td>
336                                                 <td>[% basketgroup.id %]</td>
337                                                 <td>[% Branches.GetName( basketgroup.billingplace ) %]</td>
338                                                 <td>[% IF (basketgroup.freedeliveryplace) %]Free delivery place[% ELSE %][% Branches.GetName( basketgroup.deliveryplace ) %][% END %]</td>
339                                                 <td>[% basketgroup.basketsqty %]</td>
340                                                 <td>
341                                                     <input type="button" onclick="closeandprint('[% basketgroup.id %]');" value="Close and print" />
342                                                     <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>
343                                                     <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>
344                                                 </td>
345                                             </tr>
346                                         [% END %]
347                                     [% END %]
348                                 </tbody>
349                             </table>
350                         </div>
351                         <div id="closed">
352                             <table id="basket_group_closed">
353                                 <thead>
354                                     <tr>
355                                         <th>Name</th>
356                                         <th>Number</th>
357                                         <th>Billing place</th>
358                                         <th>Delivery place</th>
359                                         <th>Number of baskets</th>
360                                         <th>Action</th>
361                                     </tr>
362                                 </thead>
363                                 <tbody>
364                                     [% FOREACH basketgroup IN basketgroups %]
365                                         [% IF ( basketgroup.closed ) %]
366                                             <tr>
367                                                 <td>
368                                                     [% IF ( basketgroup.name ) %]
369                                                         [% basketgroup.name %]
370                                                         [% ELSE %]
371                                                             Basket group no. [% basketgroup.id %]
372                                                         [% END %]
373                                                 </td>
374                                                 <td>[% basketgroup.id %]</td>
375                                                 <td>[% Branches.GetName( basketgroup.billingplace ) %]</td>
376                                                 <td>[% IF (basketgroup.freedeliveryplace) %]Free delivery place[% ELSE %][% Branches.GetName( basketgroup.deliveryplace ) %][% END %]</td>
377                                                 <td>[% basketgroup.basketsqty %]</td>
378                                                 <td>
379                                                     <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>
380                                                     <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>
381                                                     <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>
382                                                     <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>
383                                                 </td>
384                                             </tr>
385                                         [% END %]
386                                     [% END %]
387                                 </tbody>
388                             </table>
389                         </div>
390                     </div>
391                 [% END %]
392             </div>
393         </div>
394         <div class="yui-b">
395             [% IF ( booksellerid ) %]
396                 [% INCLUDE 'vendor-menu.inc' %]
397             [% END %]
398             [% INCLUDE 'acquisitions-menu.inc' %]
399         </div>
400     </div>
401     [% INCLUDE 'intranet-bottom.inc' %]