Bug 29263: (bug 24387 follow-up) Fix 'Cancel' link when editing a html custom
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / orderreceive.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE Branches %]
6 [% USE AuthorisedValues %]
7 [% USE ItemTypes %]
8 [% USE Price %]
9 [% SET footerjs = 1 %]
10 [% INCLUDE 'doc-head-open.inc' %]
11 <title>Receipt summary for : [% name | html %] [% IF ( invoice ) %]invoice, [% invoice | html %][% END %] &rsaquo; Acquisitions &rsaquo; Koha</title>
12 [% INCLUDE 'doc-head-close.inc' %]
13 </head>
14
15 <body id="acq_orderreceive" class="acq">
16 [% INCLUDE 'header.inc' %]
17 [% INCLUDE 'acquisitions-search.inc' %]
18
19 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
20     <ol>
21         <li>
22             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
23         </li>
24         <li>
25             <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a>
26         </li>
27         <li>
28             <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% order.basket.booksellerid | uri %]">[% name | html %]</a>
29         </li>
30         <li>
31             <a href="#" aria-current="page">
32     Receive items from : [% name | html %] [% IF ( invoice ) %]
33     [[% invoice | html %]]
34     [% END %] (order #[% order.ordernumber | html %])
35             </a>
36         </li>
37     </ol>
38 </nav>
39
40 <div class="main container-fluid">
41     <div class="row">
42     [% AcqCreateItem = order.basket.effective_create_items %]
43         <div class="col-sm-10 col-sm-push-2">
44             <main>
45
46 <h1>Receive items from : [% name | html %] [% IF ( invoice ) %][[% invoice | html %]] [% END %] (order #[% order.ordernumber | html %])</h1>
47
48 [% IF ( order ) %]
49     <form id="f" action="/cgi-bin/koha/acqui/finishreceive.pl" class="noEnterSubmit" method="post" onsubmit="return Check(this);">
50 <div class="row">
51 <div class="col-sm-6">
52     <div class="dialog alert order_error" style="display:none"></div>
53
54     <fieldset class="rows">
55     <legend>Catalog details</legend>
56     <ol><li><span class="label">Title: </span><span class="title">[% order.biblio.title | html %]</span></li>
57     <li> <span class="label">Author: </span>
58         [% order.biblio.author | html %]</li>
59     <li><span class="label">Copyright: </span>
60         [% order.biblio.copyrightdate | html %]</li>
61     <li> <span class="label">ISBN: </span>
62         [% order.biblio.biblioitem.isbn | html %]</li>
63     <li> <span class="label">Series: </span>
64         [% order.biblio.seriestitle | html %]</li>
65     </ol>
66         </fieldset>
67
68     [% IF suggestion %]
69         <fieldset class="rows">
70         <legend>Suggestion</legend>
71         <ol>
72           <li>
73             <span class="label">Suggested by: </span>
74             [% suggestion.surnamesuggestedby | html %][% IF suggestion.firstnamesuggestedby %], [% suggestion.firstnamesuggestedby | html %][% END %] (<a href="/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% suggestion.suggestionid | uri %]&amp;op=show">suggestion #[% suggestion.suggestionid | html %]</a>)
75             [% IF suggestion.reason %]
76                 <li>
77                     <span class="label">Reason:</span>
78                     [% SET suggestion_reasons = AuthorisedValues.GetAuthValueDropbox( 'SUGGEST' ) %]
79                     [% SET other_reason = 1 %]
80                     <select class="select-reason" id="reason" name="reason">
81                         <option value=""> -- Choose a reason -- </option>
82                         [% FOREACH reason IN suggestion_reasons %]
83                             [% IF reason.lib == suggestion.reason %]
84                                 <option value="[% reason.lib | html %]" selected="selected">[% reason.lib | html %]</option>
85                                 [% SET other_reason = 0 %]
86                             [% ELSE %]
87                                 <option value="[% reason.lib | html %]">[% reason.lib | html %]</option>
88                             [% END %]
89                         [% END %]
90                         <option value="other">Others...</option>
91                     </select>
92
93                     <span id="other_reason" name="other_reason">
94                         [% IF other_reason %]
95                             <input type="text" size="31" id="select-other_reason" name="other_reason" placeholder="please note your reason here..." value="[% suggestion.reason | html %]"/>
96                         [% ELSE %]
97                             <input type="text" size="31" id="select-other_reason" name="other_reason" placeholder="please note your reason here..." />
98                         [% END %]
99                         <a href="#back">Cancel</a>
100                     </span>
101
102                     <input type="hidden" name="suggestionid" value="[% suggestion.suggestionid | html %]" />
103                 </li>
104             [% END %]
105           </li>
106         </ol>
107         </fieldset>
108     [% END %]
109
110     [% IF order.subscriptionid and orders.count %]
111         <fieldset class="rows">
112             <legend>Receipt history for this subscription</legend>
113             <table id="orders">
114                 <thead>
115                     <tr>
116                         <th>Invoice</th>
117                         <th>Order number</th>
118                         <th>Creation date</th>
119                         <th>Receive date</th>
120                         <th>Quantity received</th>
121                         <th>Status</th>
122                         <th title="Actual cost tax exc. / Actual cost tax inc.">Spent</th>
123                         <th>Internal note</th>
124                     </tr>
125                 </thead>
126                 <tbody>
127                 [% FOR suborder IN orders %]
128                     <tr>
129                         <td>
130                         [% IF suborder.invoice %]
131                             [% IF CAN_user_acquisition %]
132                                 <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% suborder.invoiceid | uri %]" title="Invoice detail page">
133                                    [% suborder.invoice.invoicenumber | html %]</a>
134                             [% ELSE %]
135                                 [% suborder.invoice.invoicenumber | html %]
136                             [% END %]
137                         [% END %]
138                         </td>
139                         <td>[% suborder.ordernumber | html %]</td>
140                         <td data-order="[% suborder.basket.creationdate | uri %]">[% suborder.basket.creationdate | $KohaDates%]</td>
141                         <td data-order="[% suborder.datereceived | uri %]">
142                             [% IF suborder.datereceived %]
143                                 [% suborder.datereceived | $KohaDates %]
144                             [% END %]
145                         </td>
146                         <td>[% suborder.quantityreceived | html %]</td>
147                         [% SWITCH suborder.orderstatus %]
148                             [%# FIXME We should only see/display Complete here, right? %]
149                             [% CASE 'new' %]
150                                 <td data-order="status_1">
151                                     New
152                             [% CASE 'ordered' %]
153                                 <td data-order="status_2">
154                                     Ordered
155                             [% CASE 'partial' %]
156                                 <td data-order="status_3">
157                                     Partial
158                             [% CASE 'complete' %]
159                                 <td data-order="status_4">
160                                     Complete
161                             [% CASE 'cancelled' %]
162                                 <td data-order="status_5">
163                                     Cancelled
164                           [% END %]
165                         </td>
166                         <td>
167                             [% IF suborder.datereceived %][%# FIXME Should only be true, right? %]
168                                 [%# FIXME What if unitprice has not been filled? %]
169                                 [% suborder.unitprice_tax_excluded * suborder.quantity | $Price %] / [% suborder.unitprice_tax_included * suborder.quantity | $Price %]
170                             [% END %]
171                         </td>
172                         <td>[% suborder.order_internalnote | html %]</td>
173                     </tr>
174                 [% END %]
175                 </tbody>
176             </table>
177         </fieldset>
178     [% ELSIF (AcqCreateItem == 'receiving') %]
179         <div id="items_list" style="display:none">
180             <p><strong>Items list</strong></p>
181             <div style="width:100%;overflow:auto;">
182                 <table>
183                     <thead>
184                         <tr>
185                             <th class="noExport">Actions</th>
186                             <th>Barcode</th>
187                             <th>Home library</th>
188                             <th>Holding library</th>
189                             <th>Not for loan</th>
190                             <th>Restricted</th>
191                             <th>Location</th>
192                             <th>Call number</th>
193                             <th>Copy number</th>
194                             <th>Inventory number</th>
195                             <th>Collection</th>
196                             <th>Item type</th>
197                             <th>Materials</th>
198                             <th>Notes</th>
199                         </tr>
200                     </thead>
201                     <tbody>
202                     </tbody>
203                 </table>
204             </div>
205         </div>
206
207         [% UNLESS order.subscriptionid %]
208           <fieldset class="rows" id="itemfieldset">
209               <legend>Item</legend>
210               [% IF ( NoACQframework ) %]
211                   <p class="required">
212                       No ACQ framework, using default. You should create a
213                       framework with code ACQ, the items framework would be
214                       used
215                   </p>
216               [% END %]
217               <div id="outeritemblock"></div>
218           </fieldset>
219         [% END %]
220     [% ELSIF (AcqCreateItem == 'ordering') %]
221         [% IF (order.items) %]
222             <h5>Items</h5>
223             <div style="width:100%;overflow:auto">
224                 <table>
225                     <thead>
226                         <tr>
227                             <th>Receive?</th>
228                             <th>&nbsp;</th>
229                             <th>Barcode</th>
230                             <th>Home library</th>
231                             <th>Current library</th>
232                             <th>Not for loan</th>
233                             <th>Restricted</th>
234                             <th>Location</th>
235                             <th>Call number</th>
236                             <th>Copy number</th>
237                             <th>Inventory number</th>
238                             <th>Collection</th>
239                             <th>Item type</th>
240                             <th>Materials</th>
241                             <th>Notes</th>
242                         </tr>
243                     </thead>
244                     <tbody>
245                         [% FOREACH item IN order.items %]
246                             <tr id="item_[% item.itemnumber | html %]">
247                                 <td style="text-align:center"><input type="checkbox" name="items_to_receive" value="[% item.itemnumber | html %]" /></td>
248                                 <td><a style="cursor:pointer" onclick="PopupEditPage([% item.biblionumber | html %],[% item.itemnumber | html %]);">Edit</a></td>
249                                 <td>[% item.barcode | html %]</td>
250                                 <td>[% Branches.GetName( item.homebranch ) | html %]</td>
251                                 <td>[% Branches.GetName( item.holdingbranch ) | html %]</td>
252                                 <td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => item.notforloan ) | html %]</td>
253                                 <td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.restricted', authorised_value => item.restricted ) | html %]</td>
254                                 <td><span class="shelvingloc">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => item.location ) | html %]</span></td>
255                                 <td>[% item.itemcallnumber | html %]</td>
256                                 <td>[% item.copynumber | html %]</td>
257                                 <td>[% item.stocknumber | html %]</td>
258                                 <td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => item.ccode ) | html %]</td>
259                                 <td>[% ItemTypes.GetDescription( item.itype ) | html %]</td>
260                                 <td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.materials', authorised_value => item.materials ) | html %]</td>
261                                 <td>[% item.itemnotes | html %]</td>
262                             </tr>
263                         [% END %]
264                     </tbody>
265                 </table>
266             </div>
267         [% END %]
268     [% END %]
269     <input type="hidden" name="biblionumber" value="[% order.biblionumber | html %]" />
270     <input type="hidden" name="invoiceid" value="[% invoiceid | html %]" />
271     <input type="hidden" name="ordernumber" value="[% order.ordernumber | html %]" />
272     <input type="hidden" name="booksellerid" value="[% order.basket.booksellerid | html %]" />
273         </div>
274     <div class="col-sm-6">
275     <fieldset class="rows">
276     <legend>Accounting details</legend>
277         <ol>
278             <li>
279                 <label for="datereceived">Date received: </label>
280                 <input type="text" size="10" id="datereceived" name="datereceived" value="[% datereceived | $KohaDates %]" class="flatpickr" />
281                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
282             </li>
283        <li><label for="bookfund">Fund: </label><select id="bookfund" name="bookfund">
284             <option value="">Keep current ([% budget_period_description | html %] - [% order.fund.budget_name | html %])</option>
285             [% FOREACH period IN budget_loop %]
286                 <optgroup label="[% period.description | html %]">
287                 [% FOREACH fund IN period.funds %]
288                     [% IF ( fund.b_sel ) %]
289                         <option value="[% fund.b_id | html %]" selected="selected">[% fund.b_txt | html %]</option>
290                     [% ELSE %]
291                         <option value="[% fund.b_id | html %]">[% fund.b_txt | html %]</option>
292                     [% END %]
293                 [% END %]
294                 </optgroup>
295             [% END %]
296        </select></li>
297        <li><label>&nbsp;</label><span>(Current: [% budget_period_description | html %] - [% bookfund | html %])</span></li>
298        <li>
299         <label for="creator">Ordered by: </label>
300         <span>
301             [% INCLUDE 'patron-title.inc' patron = creator %]
302         </span>
303        </li>
304        <li><label for="quantity_to_receive">Quantity ordered: </label><span class="label">
305            [% IF edit or order.subscriptionid %]
306                <input type="text" id="quantity_to_receive" name="quantity" value="[% order.quantity | html %]" />
307            [% ELSE%]
308                <input type="text" readonly="readonly" id="quantity_to_receive" name="quantity" value="[% order.quantity | html %]" />
309            [% END %]
310            </span></li>
311         <li><label for="quantity">Quantity received: </label>
312           [% IF order.subscriptionid %]
313               <input type="text" inputmode="numeric" pattern="[0-9]*" size="20" name="quantityrec" id="quantity" value="[% order.quantity | html %]" />
314               <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="[% order.quantityreceived | html %]" />
315           [% ELSIF AcqCreateItem == 'receiving' %]
316               <input readonly="readonly" type="text" size="20" name="quantityrec" id="quantity" value="0" />
317           [% ELSE %]
318             [% IF ( order.quantityreceived ) %]
319                 [% IF ( edit ) %]
320                     <input type="text" inputmode="numeric" pattern="[0-9]*" size="20" name="quantityrec" id="quantity" value="[% order.quantityreceived | html %]" />
321                     <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="[% order.quantityreceived | html %]" />
322                 [% ELSE %]
323                     [% IF ( order.items.count ) %]
324                         <input readonly="readonly" type="text" size="20" name="quantityrec" id="quantity" value="[% order.quantityreceived + 1 | html %]" />
325                     [% ELSE %]
326                         <input type="text" inputmode="numeric" pattern="[0-9]*" size="20" name="quantityrec" id="quantity" value="[% quantityreceived + 1 | html %]" />
327                     [% END %]
328                     <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="[% order.quantityreceived | html %]" />
329                 [% END %]
330             [% ELSE %]
331                 <input type="text" inputmode="numeric" pattern="[0-9]*" id="quantity" size="20" name="quantityrec" value="1" />
332                 <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="0" />
333             [% END %]
334             <div id="qtyrecerror" style="display:none">
335                 <p class="error">Warning, you have entered more items than expected.
336                 Items will not be created.</p>
337             </div>
338           [% END %][%# IF (order.subscriptionid) ELSIF (AcqCreateItem == 'receiving' ) %]
339                 </li>
340
341         [% IF ( gst_values ) %]
342             <li>
343                 <label for="tax_rate">Tax rate: </label>
344                 <select name="tax_rate" id="tax_rate">
345                 [% tax_rate = order.tax_rate_on_receiving || order.tax_rate_on_ordering %]
346                 [% tax_rate = tax_rate + 0 %]
347                 [% FOREACH gst IN gst_values %]
348                     [% IF gst.option == tax_rate %]
349                         <option value="[% gst.option | html %]" selected="selected">[% gst.option * 100 | html %]%</option>
350                     [% ELSE %]
351                         <option value="[% gst.option | html %]">[% gst.option * 100 | html %]%</option>
352                     [% END %]
353                 [% END %]
354                 </select>
355             </li>
356         [% ELSE %]
357             <input type="hidden" name="tax_rate" value="0" />
358         [% END %]
359
360         <li><label for="rrp">Retail price: </label>
361             [% IF (invoiceincgst == 1) %]
362                 [% order.rrp_tax_included | $Price %]<span class="hint">(adjusted for [% active_currency.currency | html %],tax inclusive)</span></li>
363             [% ELSE %]
364                 [% order.rrp_tax_excluded | $Price %]<span class="hint">(adjusted for [% active_currency.currency | html %],tax exclusive)</span></li>
365             [% END %]
366         <li>
367             <label for="replacementprice">Replacement price:</label>
368             <input type="text" size="20" name="replacementprice" id="replacementprice" value="[% order.replacementprice | $Price on_editing => 1 %]" />
369         </li>
370         <li>
371             [% IF (invoiceincgst) %]
372                 <label for="ecost">Budgeted cost: </label>[% order.ecost_tax_included | $Price %] <span class="hint">(tax inclusive)</span>
373             [% ELSE %]
374                 <label for="ecost">Budgeted cost: </label>[% order.ecost_tax_excluded | $Price %] <span class="hint">(tax exclusive)</span>
375             [% END %]
376             </li>
377         <li>
378             <label for="unitprice">Actual cost:</label>
379             [% IF (invoiceincgst) %]
380                 <input type="text" size="20" name="unitprice" id="unitprice" value="[% order.unitprice_tax_included | $Price on_editing => 1 %]" /> <span class="hint">(tax inclusive)</span>
381             [% ELSE %]
382                 <input type="text" size="20" name="unitprice" id="unitprice" value="[% order.unitprice_tax_excluded | $Price on_editing => 1 %]" /> <span class="hint">(tax exclusive)</span>
383             [% END %]
384             <label style="font-weight: inherit; float:none;"><input type="checkbox" name="change_currency">Change currency</label>
385         </li>
386         <li id="select_currency">
387             <label for="unitprice_currency"></label>
388             <input type="text" size="20" name="unitprice" id="unitprice_currency" value="" />
389             [% IF currencies.count %]
390                 <select name="currency">
391                     <option value="[% active_currency.rate | html %]" selected="selected">[% active_currency.currency | html %] ([% active_currency.symbol | html %])</option>
392                     [% FOR currency IN currencies %]
393                         <option value="[% currency.rate | html %]">[% currency.currency | html %] ([% currency.symbol | html %])</option>
394                     [% END %]
395                 </select>
396             [% END %]
397         </li>
398         <li><label for="order_internalnote">Internal note: </label><textarea name="order_internalnote" width="40" rows="8" >[% order_internalnote | html %]</textarea></li>
399         [% IF order_vendornote %]
400             <li><label for="order_vendornote">Vendor note: </label><span>[% order_vendornote | html %]</span></li>
401         [% END %]
402         </ol>
403     </fieldset>
404
405 </div>
406 </div><div class="row"><fieldset class="action">
407         <input type="submit"  value="Save" class="button" accesskey="w" />
408         <a class="cancel" href="/cgi-bin/koha/acqui/parcel.pl?invoiceid=[% invoiceid | html %]">Cancel</a>
409 </fieldset></div>    </form>
410 [% ELSE %]
411     This ordernumber does not exist.
412 [% END %]
413
414 </main>
415 </div> <!-- /.col-sm-10.col-sm-push-2 -->
416
417 <div class="col-sm-2 col-sm-pull-10">
418     <aside>
419         [% INCLUDE 'acquisitions-menu.inc' %]
420     </aside>
421 </div> <!-- /.col-sm-2.col-sm-pull-10 -->
422 </div> <!-- /.row -->
423 [% MACRO jsinclude BLOCK %]
424     [% Asset.js("js/acquisitions-menu.js") | $raw %]
425 [% INCLUDE 'calendar.inc' %]
426     [% Asset.js("js/additem.js") | $raw %]
427     [% Asset.js("js/cataloging.js") | $raw %]
428     <script>
429         function Check(form) {
430             [% IF (AcqCreateItem == 'receiving') %]
431                 var total_errors = CheckMandatorySubfields(form);
432                 if (total_errors != 0) {
433                     var alertString = _("Form not submitted because of the following problem(s)");
434                     alertString += "\n------------------------------------------------------------------------------------\n";
435                     alertString += "\n- " + _("%s mandatory fields empty (highlighted)").format(total_errors);
436                     alert(alertString);
437                     return false;
438                 }
439
440                 if(check_additem('[% Koha.Preference("UniqueItemFields") | html %]') == false){
441                     alert(_("Duplicate values detected. Please correct the errors and resubmit.") );
442                     return false;
443                 };
444
445                 // Remove last itemblock if it is not in items_list
446                 var lastitemblock = $("#outeritemblock > div:last");
447                 var tobedeleted = true;
448                 var listitems = $("#items_list tr");
449                 $(listitems).each(function(){
450                     if($(this).attr('idblock') == $(lastitemblock).attr('id')){
451                         tobedeleted = false;
452                     }
453                 });
454                 if(tobedeleted){
455                     $(lastitemblock).remove();
456                 }
457
458                 if(check_additem('[% Koha.Preference("UniqueItemFields") | html %]') == false){
459                     alert(_("Duplicate values detected. Please correct the errors and resubmit.") );
460                     if(tobedeleted) {
461                         $(lastitemblock).appendTo("#outeritemblock");
462                     }
463                     return false;
464                 };
465             [% END %]
466
467             if( $("#quantity").val() < 1 ) {
468                 alert(_("You must receive at least one item"));
469                 return false;
470             }
471
472             return true;
473         }
474
475         [% IF (AcqCreateItem == 'ordering') %]
476             var items_columns = [null, null, 'barcode', 'homebranchname',
477                 'holdingbranchname', 'notforloan', 'restricted', 'location',
478                 'itemcallnumber', 'copynumber', 'stocknumber', 'collection',
479                 'itemtype', 'materials', 'itemnotes'];
480
481             function PopupEditPage(biblionumber, itemnumber) {
482                 var url = "/cgi-bin/koha/cataloguing/additem.pl?op=edititem&biblionumber="
483                     + biblionumber + "&itemnumber=" + itemnumber + "&popup=1#edititem";
484                 var w = window.open(url);
485                 var watchClose = setInterval(function() {
486                     if (w.closed) {
487                         clearTimeout(watchClose);
488                         $.getJSON('/cgi-bin/koha/catalogue/getitem-ajax.pl',
489                             {
490                                 'itemnumber': itemnumber
491                             },
492                             function(item) {
493                                 var tds = $("#item_"+itemnumber+" td");
494                                 for(var i=2; i<tds.length; i++) {
495                                     var column = items_columns[i];
496                                     var text = item[column];
497                                     if ( text == null ) text = '';
498                                     $(tds[i]).text(text);
499                                 }
500                             }
501                         );
502                     }
503                 }, 500);
504             }
505
506             function CalcQtyToReceive() {
507                 var qty = $("input[name='items_to_receive']:checked").length;
508                 $("#quantity").val(qty);
509             }
510
511             function CheckNItems(n) {
512                 $("input[name='items_to_receive']").each(function() {
513                     $(this).prop('checked', false);
514                 });
515                 $("input[name='items_to_receive']:lt("+n+")").each(function () {
516                     $(this).prop('checked', true);
517                 });
518             }
519         [% END %]
520
521         $(document).ready(function() {
522             [% IF (AcqCreateItem == 'receiving') %]
523                 cloneItemBlock(0, '[% Koha.Preference('UniqueItemFields') | html %]');
524             [% ELSIF (AcqCreateItem == 'ordering') && not order.subscriptionid %]
525                 $("input[name='items_to_receive']").change(function() {
526                     CalcQtyToReceive();
527                 });
528                 CalcQtyToReceive();
529                 $("#quantity").keyup(function() {
530                     var qty = parseInt($("#quantity").val());
531                     var qtyto = parseInt($("#quantity_to_receive").val());
532                     if(qty > qtyto) {
533                         $("#qtyrecerror").show();
534                     } else {
535                         $("#qtyrecerror").hide();
536                     }
537                     CheckNItems($(this).val());
538                 });
539             [% END %]
540
541             $("input[name='change_currency']").on("change", function(){
542                 if ( $(this).is(":checked") ) {
543                     $("#select_currency").show();
544                     $("#unitprice").prop("readonly", "true");
545                 } else {
546                     $("#select_currency").hide();
547                     $("#unitprice").prop("readonly", "");
548                 }
549             }).change();
550
551             function update_unitprice() {
552                 var rate = Number($("select[name='currency'] option:selected").val());
553                 var unitprice = $("#unitprice_currency").val();
554                 var new_unitprice = Number( unitprice * rate ).toFixed(2);
555                 $("#unitprice").val(new_unitprice);
556             }
557             $("select[name='currency']").on("change", function(){update_unitprice()} );
558             $("#unitprice_currency").on("change", function(){update_unitprice()} );
559
560             [% IF other_reason %]
561                 $(".select-reason").hide();
562                 $(".select-reason").find("option[value='other']").attr("selected","selected");
563                 $("#other_reason").show();
564             [% ELSE %]
565                 $("#other_reason").hide();
566             [% END %]
567             $(".select-reason").change(function(){
568                 if($(this).val() == "other"){
569                     $(this).hide();
570                     $("#other_reason").show();
571                 }
572             });
573             $("a[href*=back]").click(function(){
574                 $(".select-reason").show().find("option[value='']").attr("selected","selected");
575                 $("#other_reason").hide();
576             });
577
578         });
579     </script>
580 [% END %]
581
582 [% INCLUDE 'intranet-bottom.inc' %]