Bug 28942: Use Flatpickr on acquisitions pages
[srvgit] / 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                 [% FOREACH gst IN gst_values %]
347                     [% IF gst.option == tax_rate %]
348                         <option value="[% gst.option | html %]" selected="selected">[% gst.option * 100 | html %]%</option>
349                     [% ELSE %]
350                         <option value="[% gst.option | html %]">[% gst.option * 100 | html %]%</option>
351                     [% END %]
352                 [% END %]
353                 </select>
354             </li>
355         [% ELSE %]
356             <input type="hidden" name="tax_rate" value="0" />
357         [% END %]
358
359         <li><label for="rrp">Retail price: </label>
360             [% IF (invoiceincgst == 1) %]
361                 [% order.rrp_tax_included | $Price %]<span class="hint">(adjusted for [% active_currency.currency | html %],tax inclusive)</span></li>
362             [% ELSE %]
363                 [% order.rrp_tax_excluded | $Price %]<span class="hint">(adjusted for [% active_currency.currency | html %],tax exclusive)</span></li>
364             [% END %]
365         <li>
366             <label for="replacementprice">Replacement price:</label>
367             <input type="text" size="20" name="replacementprice" id="replacementprice" value="[% order.replacementprice | $Price on_editing => 1 %]" />
368         </li>
369         <li>
370             [% IF (invoiceincgst) %]
371                 <label for="ecost">Budgeted cost: </label>[% order.ecost_tax_included | $Price %] <span class="hint">(tax inclusive)</span>
372             [% ELSE %]
373                 <label for="ecost">Budgeted cost: </label>[% order.ecost_tax_excluded | $Price %] <span class="hint">(tax exclusive)</span>
374             [% END %]
375             </li>
376         <li>
377             <label for="unitprice">Actual cost:</label>
378             [% IF (invoiceincgst) %]
379                 <input type="text" size="20" name="unitprice" id="unitprice" value="[% order.unitprice_tax_included | $Price on_editing => 1 %]" /> <span class="hint">(tax inclusive)</span>
380             [% ELSE %]
381                 <input type="text" size="20" name="unitprice" id="unitprice" value="[% order.unitprice_tax_excluded | $Price on_editing => 1 %]" /> <span class="hint">(tax exclusive)</span>
382             [% END %]
383             <label style="font-weight: inherit; float:none;"><input type="checkbox" name="change_currency">Change currency</label>
384         </li>
385         <li id="select_currency">
386             <label for="unitprice_currency"></label>
387             <input type="text" size="20" name="unitprice" id="unitprice_currency" value="" />
388             [% IF currencies.count %]
389                 <select name="currency">
390                     <option value="[% active_currency.rate | html %]" selected="selected">[% active_currency.currency | html %] ([% active_currency.symbol | html %])</option>
391                     [% FOR currency IN currencies %]
392                         <option value="[% currency.rate | html %]">[% currency.currency | html %] ([% currency.symbol | html %])</option>
393                     [% END %]
394                 </select>
395             [% END %]
396         </li>
397         <li><label for="order_internalnote">Internal note: </label><textarea name="order_internalnote" width="40" rows="8" >[% order_internalnote | html %]</textarea></li>
398         [% IF order_vendornote %]
399             <li><label for="order_vendornote">Vendor note: </label><span>[% order_vendornote | html %]</span></li>
400         [% END %]
401         </ol>
402     </fieldset>
403
404 </div>
405 </div><div class="row"><fieldset class="action">
406         <input type="submit"  value="Save" class="button" accesskey="w" />
407         <a class="cancel" href="/cgi-bin/koha/acqui/parcel.pl?invoiceid=[% invoiceid | html %]">Cancel</a>
408 </fieldset></div>    </form>
409 [% ELSE %]
410     This ordernumber does not exist.
411 [% END %]
412
413 </main>
414 </div> <!-- /.col-sm-10.col-sm-push-2 -->
415
416 <div class="col-sm-2 col-sm-pull-10">
417     <aside>
418         [% INCLUDE 'acquisitions-menu.inc' %]
419     </aside>
420 </div> <!-- /.col-sm-2.col-sm-pull-10 -->
421 </div> <!-- /.row -->
422 [% MACRO jsinclude BLOCK %]
423     [% Asset.js("js/acquisitions-menu.js") | $raw %]
424 [% INCLUDE 'calendar.inc' %]
425     [% Asset.js("js/additem.js") | $raw %]
426     [% Asset.js("js/cataloging.js") | $raw %]
427     <script>
428         function Check(form) {
429             [% IF (AcqCreateItem == 'receiving') %]
430                 var total_errors = CheckMandatorySubfields(form);
431                 if (total_errors != 0) {
432                     var alertString = _("Form not submitted because of the following problem(s)");
433                     alertString += "\n------------------------------------------------------------------------------------\n";
434                     alertString += "\n- " + _("%s mandatory fields empty (highlighted)").format(total_errors);
435                     alert(alertString);
436                     return false;
437                 }
438
439                 if(check_additem('[% Koha.Preference("UniqueItemFields") | html %]') == false){
440                     alert(_("Duplicate values detected. Please correct the errors and resubmit.") );
441                     return false;
442                 };
443
444                 // Remove last itemblock if it is not in items_list
445                 var lastitemblock = $("#outeritemblock > div:last");
446                 var tobedeleted = true;
447                 var listitems = $("#items_list tr");
448                 $(listitems).each(function(){
449                     if($(this).attr('idblock') == $(lastitemblock).attr('id')){
450                         tobedeleted = false;
451                     }
452                 });
453                 if(tobedeleted){
454                     $(lastitemblock).remove();
455                 }
456
457                 if(check_additem('[% Koha.Preference("UniqueItemFields") | html %]') == false){
458                     alert(_("Duplicate values detected. Please correct the errors and resubmit.") );
459                     if(tobedeleted) {
460                         $(lastitemblock).appendTo("#outeritemblock");
461                     }
462                     return false;
463                 };
464             [% END %]
465
466             if( $("#quantity").val() < 1 ) {
467                 alert(_("You must receive at least one item"));
468                 return false;
469             }
470
471             return true;
472         }
473
474         [% IF (AcqCreateItem == 'ordering') %]
475             var items_columns = [null, null, 'barcode', 'homebranchname',
476                 'holdingbranchname', 'notforloan', 'restricted', 'location',
477                 'itemcallnumber', 'copynumber', 'stocknumber', 'collection',
478                 'itemtype', 'materials', 'itemnotes'];
479
480             function PopupEditPage(biblionumber, itemnumber) {
481                 var url = "/cgi-bin/koha/cataloguing/additem.pl?op=edititem&biblionumber="
482                     + biblionumber + "&itemnumber=" + itemnumber + "&popup=1#edititem";
483                 var w = window.open(url);
484                 var watchClose = setInterval(function() {
485                     if (w.closed) {
486                         clearTimeout(watchClose);
487                         $.getJSON('/cgi-bin/koha/catalogue/getitem-ajax.pl',
488                             {
489                                 'itemnumber': itemnumber
490                             },
491                             function(item) {
492                                 var tds = $("#item_"+itemnumber+" td");
493                                 for(var i=2; i<tds.length; i++) {
494                                     var column = items_columns[i];
495                                     var text = item[column];
496                                     if ( text == null ) text = '';
497                                     $(tds[i]).text(text);
498                                 }
499                             }
500                         );
501                     }
502                 }, 500);
503             }
504
505             function CalcQtyToReceive() {
506                 var qty = $("input[name='items_to_receive']:checked").length;
507                 $("#quantity").val(qty);
508             }
509
510             function CheckNItems(n) {
511                 $("input[name='items_to_receive']").each(function() {
512                     $(this).prop('checked', false);
513                 });
514                 $("input[name='items_to_receive']:lt("+n+")").each(function () {
515                     $(this).prop('checked', true);
516                 });
517             }
518         [% END %]
519
520         $(document).ready(function() {
521             [% IF (AcqCreateItem == 'receiving') %]
522                 cloneItemBlock(0, '[% Koha.Preference('UniqueItemFields') | html %]');
523             [% ELSIF (AcqCreateItem == 'ordering') && not order.subscriptionid %]
524                 $("input[name='items_to_receive']").change(function() {
525                     CalcQtyToReceive();
526                 });
527                 CalcQtyToReceive();
528                 $("#quantity").keyup(function() {
529                     var qty = parseInt($("#quantity").val());
530                     var qtyto = parseInt($("#quantity_to_receive").val());
531                     if(qty > qtyto) {
532                         $("#qtyrecerror").show();
533                     } else {
534                         $("#qtyrecerror").hide();
535                     }
536                     CheckNItems($(this).val());
537                 });
538             [% END %]
539
540             $("input[name='change_currency']").on("change", function(){
541                 if ( $(this).is(":checked") ) {
542                     $("#select_currency").show();
543                     $("#unitprice").prop("readonly", "true");
544                 } else {
545                     $("#select_currency").hide();
546                     $("#unitprice").prop("readonly", "");
547                 }
548             }).change();
549
550             function update_unitprice() {
551                 var rate = Number($("select[name='currency'] option:selected").val());
552                 var unitprice = $("#unitprice_currency").val();
553                 var new_unitprice = Number( unitprice * rate ).toFixed(2);
554                 $("#unitprice").val(new_unitprice);
555             }
556             $("select[name='currency']").on("change", function(){update_unitprice()} );
557             $("#unitprice_currency").on("change", function(){update_unitprice()} );
558
559             [% IF other_reason %]
560                 $(".select-reason").hide();
561                 $(".select-reason").find("option[value='other']").attr("selected","selected");
562                 $("#other_reason").show();
563             [% ELSE %]
564                 $("#other_reason").hide();
565             [% END %]
566             $(".select-reason").change(function(){
567                 if($(this).val() == "other"){
568                     $(this).hide();
569                     $("#other_reason").show();
570                 }
571             });
572             $("a[href*=back]").click(function(){
573                 $(".select-reason").show().find("option[value='']").attr("selected","selected");
574                 $("#other_reason").hide();
575             });
576
577         });
578     </script>
579 [% END %]
580
581 [% INCLUDE 'intranet-bottom.inc' %]