Bug 10904: Limit patron update request management by branch
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / addorderiso2709.tt
1 [% USE KohaDates %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Acquisitions &rsaquo; Order staged MARC records
4 [% IF ( batch_details ) %]
5  &rsaquo; Batch [% import_batch_id %]
6 [% ELSE %]
7  &rsaquo; Batch list
8 [% END %]
9 </title>
10 [% INCLUDE 'greybox.inc' %]
11 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
12 [% INCLUDE 'doc-head-close.inc' %]
13 [% INCLUDE 'datatables.inc' %]
14 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
15 <script type="text/javascript" src="[% themelang %]/js/acq.js"></script>
16 <script type="text/JavaScript">
17 //<![CDATA[
18     $(document).ready(function() {
19         $("#files").dataTable($.extend(true, {}, dataTablesDefaults, {
20             "aoColumnDefs": [
21                 { "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
22                 { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
23                 { "sType": "title-string", "aTargets" : [ "title-string" ] }
24             ],
25             "sPaginationType": "four_button",
26             "aaSorting": []
27         } ) );
28
29         // keep copy of the inactive budgets
30         disabledBudgetsCopy = $("select[name='all_budget_id']").html();
31         $("select[name='all_budget_id'] .b_inactive").remove();
32         $("select[name='budget_id'] .b_inactive").remove();
33
34         $("#showallbudgets").click(function() {
35             if ($(this).is(":checked")) {
36                 $("select[name='budget_id']").html(disabledBudgetsCopy)
37             }
38             else {
39                 $("select[name='budget_id'] .b_inactive").remove();
40             }
41         });
42
43         $("#all_showallbudgets").click(function() {
44             if ($(this).is(":checked")) {
45                 $("select[name='all_budget_id']").html(disabledBudgetsCopy);
46             }
47             else {
48                 $("select[name='all_budget_id'] .b_inactive").remove();
49             }
50         });
51
52         $("select[name='budget_id']").change(function(){
53             var sort1_authcat = $(this).find("option:selected").attr('data-sort1-authcat');
54             var sort2_authcat = $(this).find("option:selected").attr('data-sort2-authcat');
55             var destination_sort1 = $(this).parents('fieldset').find('li.sort1').find('input[name="sort1"]');
56             var sort1 = $(destination_sort1).val() || "";
57             if ( destination_sort1.length < 1 ) {
58                 destination_sort1 = $(this).parents('fieldset').find('li.sort1 > select[name="sort1"]');
59             }
60             var destination_sort2 = $(this).parents('fieldset').find('li.sort2').find('input[name="sort2"]');
61             var sort2 = $(destination_sort2).val() || "";
62             if ( destination_sort2.length < 1 ) {
63                 destination_sort2 = $(this).parents('fieldset').find('li.sort2').find('select[name="sort2"]');
64             }
65             getAuthValueDropbox( 'sort1', sort1_authcat, destination_sort1, sort1 );
66
67             getAuthValueDropbox( 'sort2', sort2_authcat, destination_sort2, sort2 );
68         } );
69
70         $("select[name='budget_id']").change();
71
72         $("select[name='all_budget_id']").change(function(){
73             var sort1_authcat = $(this).find("option:selected").attr('data-sort1-authcat');
74             var sort2_authcat = $(this).find("option:selected").attr('data-sort2-authcat');
75             var destination_sort1 = $(this).parent().siblings('li').find('input[name="all_sort1"]');
76             if ( destination_sort1.length < 1 ) {
77                 destination_sort1 = $(this).parent().siblings('li').find('select[name="all_sort1"]');
78             }
79             var destination_sort2 = $(this).parent().siblings('li').find('input[name="all_sort2"]');
80             if ( destination_sort2.length < 1 ) {
81                 destination_sort2 = $(this).parent().siblings('li').find('select[name="all_sort2"]');
82             }
83             getAuthValueDropbox( 'sort1', sort1_authcat, destination_sort1 );
84             getAuthValueDropbox( 'sort2', sort2_authcat, destination_sort2 );
85             $(this).parent().siblings('li').find('select[name="sort1"]').attr('name', 'all_sort1');
86             $(this).parent().siblings('li').find('input[name="sort1"]').attr('name', 'all_sort1');
87             $(this).parent().siblings('li').find('select[name="sort2"]').attr('name', 'all_sort2');
88             $(this).parent().siblings('li').find('input[name="sort2"]').attr('name', 'all_sort2');
89         } );
90
91         $("select[name='all_budget_id']").change();
92
93         $("#records_to_import fieldset.rows ol").hide();
94         $('input:checkbox[name="import_record_id"]').change(function(){
95             var container = $(this).parents("fieldset");
96             if ( $(this).is(':checked') ) {
97                 $(container).addClass("selected");
98                 $(container).removeClass("unselected");
99                 $(container).find("ol").toggle(true);
100             } else {
101                 $(container).addClass("unselected");
102                 $(container).removeClass("selected");
103                 $(container).find("ol").toggle(false);
104             }
105         } );
106
107         $("input:checkbox").attr("checked", false);
108         $("div.biblio.unselected select").attr("disabled", false);
109         $("div.biblio.unselected input").attr("disabled", false);
110
111         $("#checkAll").click(function(){
112             $("#Aform").checkCheckboxes();
113             $("input:checkbox[name='import_record_id']").change();
114             return false;
115         });
116         $("#unCheckAll").click(function(){
117             $("#Aform").unCheckCheckboxes();
118             $("input:checkbox[name='import_record_id']").change();
119             return false;
120         });
121
122         $("#Aform").on("submit", function(){
123             if ( $("input:checkbox[name='import_record_id']:checked").length < 1 ) {
124                 alert(_("There is no record selected"));
125                 return false;
126             }
127
128             var error = 0;
129             $("input:checkbox[name='import_record_id']:checked").parents('fieldset').find('input[name="quantity"]').each(function(){
130                 if ( $(this).val().length < 1 || isNaN( $(this).val() ) ) {
131                     error++;
132                 }
133             });
134             if ( error > 0 ) {
135                 alert(error + " " + _("quantity values are not filled in or are not numbers"));
136                 return false;
137             }
138
139             return disableUnchecked($(this));
140         });
141         $('#tabs').tabs();
142     });
143
144     function disableUnchecked(form){
145         $("fieldset.biblio.unselected").each(function(){
146             $(this).remove();
147         });
148         return 1;
149     }
150 //]]>
151 </script>
152 </head>
153 <body id="acq_addorderiso2709" class="acq">
154 [% INCLUDE 'header.inc' %]
155 [% INCLUDE 'acquisitions-search.inc' %]
156 <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 %]</a> &rsaquo; <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno %]">Basket [% basketno %]</a> &rsaquo;  Add orders from iso2709 file</div>
157 <div id="doc3" class="yui-t2">
158    <div id="bd">
159        <div id="yui-main">
160            <div class="yui-b">
161              [% IF ( allmatch ) %]<div class="dialog alert">
162               <h4>No records imported</h4>
163              No record have been imported because they all match an existing record in your catalog.<br />You'll have to treat them individually.
164              </div>
165              [% END %]
166
167              [% IF ( batch_details ) %]
168                 <h1>Add orders from [% comments %]
169                     ([% file_name %] staged on [% upload_timestamp | $KohaDates with_hours => 1 %])
170                 </h1>
171                 <form action="/cgi-bin/koha/acqui/addorderiso2709.pl" method="post" id="Aform">
172                 <div id="tabs" class="toptabs">
173                   <ul>
174                     <li><a href="#records_to_import">Select to import</a></li>
175                     <li><a href="#items_info" class="items_info">Item information</a></li>
176                     <li><a href="#accounting_details">Default accounting details</a></li>
177                   </ul>
178
179                   <div id="records_to_import">
180                     <span class="checkall"><a id="checkAll" href="#">Check all</a></span>
181                     <span class="uncheckall"><a id="unCheckAll" href="#">Uncheck all</a></span>
182                     <label for="showallbudgets" style="float:none;width:auto;">&nbsp;Show inactive funds:</label>
183                     <input type="checkbox" id="showallbudgets" />
184                         <input type="hidden" name="op" value="import_records"/>
185                         <input type="hidden" name="basketno" value="[% basketno %]" />
186                         <input type="hidden" name="booksellerid" value="[% booksellerid %]" />
187                         <input type="hidden" name="import_batch_id" value="[%import_batch_id %]" />
188                         <input type="hidden" name="ordernumber" value="[% ordernumber %]" />
189
190                         [% FOREACH cur IN loop_currencies %]
191                             <input type="hidden" name="[% cur.currency %]" value="[% cur.rate %]" />
192                         [% END %]
193
194                         [% FOREACH biblio IN biblio_list %]
195                         <fieldset class="biblio unselected rows" style="float:none;">
196                           <legend>
197                             <label for="record_[% biblio.import_record_id %]" style="width:auto;">
198                               <input type="checkbox" name="import_record_id" id="record_[% biblio.import_record_id %]" value="[% biblio.import_record_id %]" />
199                               <span class="citation">[% biblio.citation %]</span>
200                             </label>
201                             <span class="links" style="font-weight: normal;">
202                               ( <a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% biblio.import_record_id %]" title="MARC" rel="gb_page_center[600,500]">MARC</a> | <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;importid=[% biblio.import_record_id %]" title="Card" rel="gb_page_center[600,500]">Card</a> | <a href="/cgi-bin/koha/acqui/neworderempty.pl?booksellerid=[% booksellerid %]&amp;basketno=[% basketno %]&amp;breedingid=[% biblio.import_record_id %]&amp;import_batch_id=[% biblio.import_batch_id %]&amp;biblionumber=[% biblio.match_biblionumber %]">Add order</a> )
203                             </span>
204                           </legend>
205                           <ol>
206                             <li class="status">
207                               <span class="match">
208                                 [% IF ( biblio_lis.overlay_status == 'no_match' ) %]
209                                     No match
210                                 [% ELSIF ( biblio_lis.overlay_status == 'match_applied' ) %]
211                                     Match applied
212                                 [% ELSIF ( biblio_lis.overlay_status == 'auto_match' ) %]
213                                     Match found
214                                 [% ELSE %]
215                                     [% biblio_lis.overlay_status %]
216                                 [% END %]
217                                 [% IF ( biblio.match_biblionumber ) %]
218                                   Matches biblio [% biblio.match_biblionumber %] (score = [% biblio.match_score %]): <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.match_biblionumber %]">[% biblio.match_citation %]</a>
219                                 [% END %]
220                               </span>
221                             </li>
222                             <li class="quantity">
223                                 <label for="quantity_record_[% biblio.import_record_id %]" class="required">Quantity: </label>
224                                 <input id="quantity_record_[% biblio.import_record_id %]" type="text" value="[% biblio.quantity.length ? biblio.quantity : 1 %]" name="quantity" />
225                             </li>
226                             <li class="price">
227                                 <label for="price_record_[% biblio.import_record_id %]">Price: </label>
228                                 <input id="price_record_[% biblio.import_record_id %]" type="text" value="[% biblio.price %]" name="price" />
229                             </li>
230                             <li class="discount">
231                                 <label for="discount_record_[% biblio.import_record_id %]">Discount: </label>
232                                 <input id="discount_record_[% biblio.import_record_id %]" type="text" value="[% biblio.discount %]" name="discount" size="6" /> %
233                                 (If empty, discount rate from vendor will be used)
234                             </li>
235                             <li class="budget">
236                                 <label for="fund_record_[% biblio.import_record_id %]">Fund: </label>
237                                 [% IF ( close ) %]
238                                   <input type="hidden" size="20" name="budget_id" value="[% budget_id %]" />[% Budget_name %]
239                                 [% ELSE %]
240                                   <select id="fund_record_[% biblio.import_record_id %]" size="1" name="budget_id">
241                                     <option value="">Select a fund</option>
242                                     [% FOREACH budget IN budget_loop %]
243                                         [% IF ( budget.b_id == biblio.budget_id ) %]
244                                           [% IF budget.b_active %]
245                                             <option value="[% budget.b_id %]" data-sort1-authcat="[% budget.b_sort1_authcat %]" data-sort2-authcat="[% budget.b_sort2_authcat %]" selected="selected">[% budget.b_txt %]</option>
246                                           [% ELSE %]
247                                             <option value="[% budget.b_id %]" data-sort1-authcat="[% budget.b_sort1_authcat %]" data-sort2-authcat="[% budget.b_sort2_authcat %]" selected="selected">[% budget.b_txt %] (inactive)</option>
248                                           [% END %]
249                                         [% ELSE %]
250                                             [% IF budget.b_active %]<option value="[% budget.b_id %]" data-sort1-authcat="[% budget.b_sort1_authcat %]" data-sort2-authcat="[% budget.b_sort2_authcat %]">[% budget.b_txt %]</option>
251                                             [% ELSE %]<option value="[% budget.b_id %]" class="b_inactive" data-sort1-authcat="[% budget.b_sort1_authcat %]" data-sort2-authcat="[% budget.b_sort2_authcat %]">[% budget.b_txt %] (inactive)</option>
252                                             [% END %]
253                                         [% END %]
254                                     [% END %]
255                                   </select>
256                                 [% END %]
257                             </li>
258                             <li class="sort1">
259                                 <label for="sort1_record_[% biblio.import_record_id %]">Statistic 1: </label>
260                                 <input id="sort1_record_[% biblio.import_record_id %]" type="text" id="sort1" size="20" name="sort1" value="[% biblio.sort1 %]" />
261                             </li>
262                             <li class="sort2">
263                                 <label for="sort2_record_[% biblio.import_record_id %]">Statistic 2: </label>
264                                 <input id="sort2_record_[% biblio.import_record_id %]" type="text" id="sort2" size="20" name="sort2" value="[% biblio.sort2 %]" />
265                             </li>
266                           </ol>
267                         </fieldset>
268                         [% END %]
269                       </div>
270                       <div id="items_info">
271                         <h2>Item information</h2>
272                         <p>Import all the checked items in the basket with the following parameters:</p>
273
274                         [% IF ( items ) %]
275                         <fieldset class="rows" style="float:none;">
276                             <legend>Item</legend>
277                             [% IF ( NoACQframework ) %]
278                                 <div class="dialog message">No ACQ framework, using default. You should create a framework with code ACQ, the items framework would be used</div>
279                             [% END %]
280                             [% FOREACH item IN items %]
281                             <div id="outeritemblock">
282                             <div id="itemblock">
283                                 <ol>
284                                 [% FOREACH iteminformatio IN item.iteminformation %]<li style="[% iteminformatio.hidden %];">
285                                     <div class="subfield_line" id="subfield[% iteminformatio.serialid %][% iteminformatio.countitems %][% iteminformatio.subfield %][% iteminformatio.random %]">
286                                         [% IF (iteminformatio.mandatory) %]
287                                             <label class="required">[% iteminformatio.subfield %] - [% iteminformatio.marc_lib %]</label>
288                                         [% ELSE %]
289                                             <label>[% iteminformatio.subfield %] - [% iteminformatio.marc_lib %]</label>
290                                         [% END %]
291
292                                         [% IF ( iteminformatio.marc_value.type == 'select' ) %]
293                                             <select name="field_value" size="1">
294                                             [% FOREACH value IN iteminformatio.marc_value.values %]
295                                                 [% IF ( value == iteminformatio.marc_value.default ) %]
296                                                     <option value="[% value %]" selected="selected">[% iteminformatio.marc_value.labels.$value %]</option>
297                                                 [% ELSE %]
298                                                     <option value="[% value %]">[% iteminformatio.marc_value.labels.$value %]</option>
299                                                 [% END %]
300                                             [% END %]
301                                             </select>
302                                         [% ELSE %]
303                                         [% iteminformatio.marc_value %]
304                                         [% END %]
305                                         <input type="hidden" name="itemid" value="1" />
306                                         <input type="hidden" name="kohafield" value="[% iteminformatio.kohafield %]" />
307                                         <input type="hidden" name="tag" value="[% iteminformatio.tag %]" />
308                                         <input type="hidden" name="subfield" value="[% iteminformatio.subfield %]" />
309                                         <input type="hidden" name="mandatory" value="[% iteminformatio.mandatory %]" />
310                                         [% IF ( iteminformatio.mandatory ) %] <span class="required">Required</span>[% END %]
311                                     </div></li>
312                                 [% END %]
313                                 </ol>
314                             </div><!-- /iteminformation -->
315                             </div>
316                             [% END %] <!-- /items -->
317                         </fieldset>
318                         [% END %] <!-- items -->
319                       </div>
320                       <div id="accounting_details">
321                         <p>Import all the checked items in the basket with the following accounting details (used only if no information is filled for the item):</p>
322                         <fieldset class="rows" style="float:none;">
323                             <legend>Accounting details</legend>
324                             <ol>
325                                 <li>
326                                     <!-- origquantityrec only here for javascript compatibility (additem.js needs it, useless here, usefull when receiveing an order -->
327                                     <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="1" />
328                                 </li>
329                                 <li>
330                                     [% IF ( close ) %]
331                                         <span class="label">Fund: </span>
332                                         <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
333                                     [% ELSE %]
334                                         <li>
335                                             <label for="all_currency">Currency:</label>
336                                             <select name="all_currency" id="all_currency">
337                                             [% FOREACH loop_currencie IN loop_currencies %]
338                                                 [% IF ( loop_currencie.selected ) %]
339                                                     <option value="[% loop_currencie.currcode %]" selected="selected">[% loop_currencie.currcode %]</option>
340                                                 [% ELSE %]
341                                                     <option value="[% loop_currencie.currcode %]">[% loop_currencie.currcode %]</option>
342                                                 [% END %]
343                                             [% END %]
344                                             </select>
345                                         </li>
346                                         <li>
347                                             <label for="all_budget_id">Fund: </label>
348                                             <select id="all_budget_id" size="1" name="all_budget_id">
349                                               <option value="">Select a fund</option>
350                                             [% FOREACH budget_loo IN budget_loop %]
351                                                 [% IF ( budget_loo.b_active ) %]<option value="[% budget_loo.b_id %]" data-sort1-authcat="[% budget_loo.b_sort1_authcat %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat %]">[% budget_loo.b_txt %]</option>
352                                                 [% ELSE %]<option value="[% budget_loo.b_id %]" class="b_inactive" data-sort1-authcat="[% budget_loo.b_sort1_authcat %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat %]">[% budget_loo.b_txt %] (inactive)</option>
353                                                 [% END %]
354                                             [% END %]
355                                             </select>
356                                             <label for="all_showallbudgets" style="float:none;width:auto;">&nbsp;Show inactive:</label>
357                                             <input type="checkbox" id="all_showallbudgets" />
358                                         </li>
359                                     [% END %]
360                                 </li>
361                                 <li>
362                                     <label for="all_order_internalnote">Internal note: </label>
363                                     <textarea id="all_order_internalnote" cols="30" rows="3" name="all_order_internalnote"></textarea>
364                                 </li>
365                                 <li>
366                                     <label for="all_order_vendornote">Vendor note: </label>
367                                     <textarea id="all_order_vendornote" cols="30" rows="3" name="all_order_vendornote"></textarea>
368                                 </li>
369                                 <li>
370                                     <div class="hint">The 2 following fields are available for your own usage. They can be useful for statistical purposes</div>
371                                     <label for="all_sort1">Statistic 1: </label>
372                                     <input type="text" id="all_sort1" size="20" name="all_sort1" value="" />
373                                 </li>
374                                 <li>
375                                     <label for="all_sort2">Statistic 2: </label>
376                                     <input type="text" id="all_sort2" size="20" name="all_sort2" value="" />
377                                 </li>
378                             </ol>
379                         </fieldset>
380                       </div>
381                       </div>
382
383                       <fieldset class="action">
384                           <input type="submit" value="Save" /><a class="cancel" href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno %]">Cancel</a>
385                       </fieldset>
386                     </form>
387                 [% ELSE %]
388                 <div>
389                   <h1>Choose the file to add to the basket</h1>
390                   <table id="files">
391                     <thead>
392                       <tr>
393                         <th>File name</th>
394                         <th>Comments</th>
395                         <th>Status</th>
396                         <th class="title-string">Staged</th>
397                         <th># Bibs</th>
398                         <th class="NoSort">&nbsp;</th>
399                       </tr>
400                     </thead>
401                     <tbody>
402                       [% FOREACH batch_lis IN batch_list %]
403                       <tr>
404                         <td>[% batch_lis.file_name %]</td>
405                         <td>[% batch_lis.comments %]</td>
406                         <td>
407                           [% IF ( batch_lis.import_status == 'cleaned' ) %]
408                             Cleaned
409                           [% ELSIF ( batch_lis.import_status == 'imported' ) %]
410                             Imported
411                           [% ELSIF ( batch_lis.import_status == 'importing' ) %]
412                             Importing
413                           [% ELSIF ( batch_lis.import_status == 'reverted' ) %]
414                             Reverted
415                           [% ELSIF ( batch_lis.import_status == 'reverting' ) %]
416                             Reverting
417                           [% ELSIF ( batch_lis.import_status == 'staged' ) %]
418                             Staged
419                           [% ELSE %]
420                             [% batch_lis.import_status %]
421                           [% END %]
422                         </td>
423                         <td><span title="[% batch_lis.staged_date %]">[% batch_lis.staged_date | $KohaDates with_hours => 1 %]</span></td>
424                         <td>[% batch_lis.num_records %]</td>
425                         <td><a href="[% batch_lis.scriptname %]?import_batch_id=[% batch_lis.import_batch_id %]&amp;basketno=[% basketno %]&amp;booksellerid=[% booksellerid %]">Add orders</a></td>
426                       </tr>
427                       [% END %]
428                     </tbody>
429                   </table>
430                 </div>
431                 [% END %]
432            </div>
433        </div>
434    </div>
435 </div>
436 </body>
437 </html>