Bug 13618: Remove html filters at the intranet
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / neworderempty.tt
1 [% USE KohaDates %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Acquisitions &rsaquo; Basket [% basketno %] &rsaquo; [% IF ( ordernumber ) %]Modify order details (line #[% ordernumber %])[% ELSE %]New order[% END %]</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5
6 <script type="text/javascript" src="[% themelang %]/js/acq.js"></script>
7 [% INCLUDE 'additem.js.inc' %]
8 <script type="text/javascript" src="[% themelang %]/js/additem.js"></script>
9 <script type="text/javascript" src="[% themelang %]/js/cataloging.js"></script>
10 <script type="text/javascript" src="[% themelang %]/js/prevent_submit.js"></script>
11 <script type="text/javascript">
12 //<![CDATA[
13 actTotal = "";
14
15 function Check(ff) {
16     [% IF (AcqCreateItemOrdering) %]
17         // Remove last itemblock if it is not in items_list
18         var lastitemblock = $("#outeritemblock > div:last");
19         var tobedeleted = true;
20         var listitems = $("#items_list tr");
21         $(listitems).each(function(){
22             if($(this).attr('idblock') == $(lastitemblock).attr('id')){
23                 tobedeleted = false;
24             }
25         });
26         if(tobedeleted){
27             $(lastitemblock).remove();
28         }
29     [% END %]
30
31     var ok=0;
32     var _alertString= _("Form not submitted because of the following problem(s)")+"\n";
33
34     _alertString +="-------------------------------------------------------------------\n\n";
35
36     if ( isNull(ff.title,1)  &&  isNull(ff.entertitle,1)   ){
37         ok=1;
38                     _alertString += "\n- " + _("Title cannot be empty");
39     }
40     
41     if(isNull(ff.budget_id,1)){
42                 ok=1;
43         _alertString += "\n- "+ _("You must select a fund");
44     }
45
46     if (!(isNum(ff.quantity,0)) || ff.quantity.value == 0){
47         ok=1;
48                     _alertString += "\n- " + _("Quantity must be greater than '0'");
49     }
50
51     if (!(isNum(ff.listprice,0))){
52         ok=1;
53                     _alertString += "\n- " + _("Vendor price must be a number");
54     }
55
56     if (!(isNum(ff.total,0))){
57         ok=1;
58                     _alertString += "\n- " + _("Total must be a number");
59     }
60
61     if (totalExceedsBudget(ff.budget_id.value, ff.total.value  )  ) {
62         ok=1;
63         _alertString += "\n- " + _("Order total (%s) exceeds budget available (%s)").format(ff.total.value, actTotal);
64     }
65
66     if ( ff.field_value ) {
67         var empty_item_mandatory = CheckMandatorySubfields(ff);
68         if (empty_item_mandatory > 0) {
69             ok = 1;
70             _alertString +=
71                 "\n- " + _("%s item mandatory fields empty").format(empty_item_mandatory);
72         }
73
74     }
75
76     if (ok) {
77         alert(_alertString);
78         [% IF (AcqCreateItemOrdering) %]
79             if(tobedeleted) {
80                 $(lastitemblock).appendTo('#outeritemblock');
81             }
82         [% END %]
83         return false;
84     }
85
86     [% IF (AcqCreateItemOrdering) %]
87         if(check_additem('[% UniqueItemFields %]') == false) {
88             alert(_("Duplicate values detected. Please correct the errors and resubmit.") );
89             if(tobedeleted) {
90                 $(lastitemblock).appendTo('#outeritemblock');
91             }
92             return false;
93         }
94     [% END %]
95 }
96
97 $(document).ready(function() 
98     {
99         [% IF (AcqCreateItemOrdering) %]
100             cloneItemBlock(0, '[% UniqueItemFields %]');
101         [% END %]
102
103         [% IF ( suggestionid ) %]updateCosts();[% END %]
104         $("#quantity").change(function() {
105             updateCosts();
106         });
107
108         //We apply the fonction only for modify option
109         [% IF ( quantityrec ) %]
110         [% IF ( acqcreate ) %]
111         $('#quantity').blur(function() 
112         {
113             // if user decreases the quantity
114             if($(this).val() < [% quantityrec %]) 
115             {
116                 alert(_("You have deleted item(s) in the order, don't forget to delete it(them) in the catalog"));
117                 return true;
118             } 
119             else 
120             {
121                 // if user increases the quantity
122                 alert(_("You can't add a new item, please create a new order line"));
123                 // and we replace the original value
124                 $(this).val([% quantityrec %])
125                 updateCosts(); // blur is invoked after change which updated values
126                 return false;
127             }
128         });
129         [% END %]
130         [% END %]
131         
132         //keep a copy of all budgets before removing the inactives
133         disabledBudgetsCopy = $('#budget_id').html();
134         $('#budget_id .b_inactive').remove();
135
136         $('#showallbudgets').click(function() {
137             if ($(this).is(":checked")) {
138                 $('#budget_id').html(disabledBudgetsCopy); //Puts back all the funds
139             }
140             else {
141                 $('#budget_id .b_inactive').remove();
142             }
143         });
144
145         $("#budget_id").change(function(){
146             var destination_sort1 = $(this).parents('fieldset.rows').find('input[name="sort1"]');
147             var sort1_authcat = $(this).find("option:selected").attr('data-sort1-authcat');
148             var sort1 = $(destination_sort1).val() || "";
149             if ( destination_sort1.length < 1 ) {
150                 destination_sort1 = $(this).parents('fieldset.rows').find('select[name="sort1"]');
151             }
152             var destination_sort2 = $(this).parents('fieldset.rows').find('input[name="sort2"]');
153             var sort2_authcat = $(this).find("option:selected").attr('data-sort2-authcat');
154             var sort2 = $(destination_sort2).val() || "";
155             if ( destination_sort2.length < 1 ) {
156                 destination_sort2 = $(this).parents('fieldset.rows').find('select[name="sort2"]');
157             }
158             getAuthValueDropbox( 'sort1', sort1_authcat, destination_sort1, sort1 );
159             getAuthValueDropbox( 'sort2', sort2_authcat, destination_sort2, sort2 );
160         });
161         $("#budget_id").change();
162     });
163
164     function UserSearchPopup(f) {
165         window.open(
166             "/cgi-bin/koha/acqui/add_user_search.pl",
167             'UserSearchPopup',
168             'width=740, height=450, scrollbars=yes, toolbar=no,'
169          );
170     }
171
172     function add_user(borrowernumber, borrowername) {
173         var ids = $("#users_ids").val();
174         if(ids.length > 0) {
175             ids = ids.split(':');
176         } else {
177             ids = new Array;
178         }
179         if (ids.indexOf(borrowernumber) < 0) {
180             ids.push(borrowernumber);
181             $("#users_ids").val(ids.join(':'));
182             var li = '<li id="user_'+borrowernumber+'">'+borrowername
183                 + ' [<a style="cursor:pointer" onclick="del_user('+borrowernumber+');">'
184                 + _("Delete user") + '</a>]</li>';
185             $("#users_names").append(li);
186             return 0;
187         }
188         return -1;
189     }
190
191     function del_user(borrowernumber) {
192       $("#user_"+borrowernumber).remove();
193       var ids = $("#users_ids").val().split(':');
194       ids.splice(ids.indexOf(borrowernumber.toString()), 1);
195       $("#users_ids").val(ids.join(':'));
196     }
197 //]]>
198 </script>
199 </head>
200 <body id="acq_neworderempty" class="acq">
201
202 [% INCLUDE 'header.inc' %]
203 [% INCLUDE 'acquisitions-search.inc' %]
204
205 <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 %]">[% name %]</a> &rsaquo; <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno %]">Basket [% basketno %]</a> &rsaquo; [% IF ( ordernumber ) %]Modify order details (line #[% ordernumber %])[% ELSE %]New order[% END %]</div>
206
207 <div id="doc3" class="yui-t2">
208
209 <div id="bd">
210     <div id="yui-main">
211     <div class="yui-b">
212
213 <h2>
214     [% IF ( ordernumber ) %]
215         Modify order line
216     [% ELSE %]
217         New order
218     [% END %]
219 </h2>
220
221 <div class="error" style="display:none"></div>
222
223 [% IF ( basketno ) %]
224     <div id="acqui_basket_summary"  class="yui-g">
225     <fieldset class="rows">
226         <legend>Basket details</legend>
227         <ol>
228         [% IF ( basketnote ) %]<li><span class="label">Internal note:</span> [% basketnote %]</li>[% END %]
229         [% IF ( basketbooksellernote ) %]<li><span class="label">Vendor note:</span> [% basketbooksellernote %]</li>[% END %]
230         [% IF ( basketcontractno ) %]
231             <li><span class="label">Contract number: </span>[% basketcontractno %]</li>
232             <li><span class="label">Contract name:</span> <a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% basketcontractno %]">[% basketcontractname %]</a></li>
233         [% END %]
234         [% IF ( authorisedbyname ) %]<li><span class="label">Managed by:</span>  [% authorisedbyname %]</li>[% END %]
235         [% IF ( creationdate ) %]<li><span class="label">Open on:</span>  [% creationdate | $KohaDates %]</li>[% END %]
236         [% IF ( closedate ) %]
237         <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="post">
238         <li><span class="label">Closed on:</span>  [% closedate | $KohaDates %]</li>
239         [% IF ( basketgroups ) %]
240             <li>Basketgroup: <select id="basketgroupid" name="basketgroupid">
241                 [% FOREACH basketgroup IN basketgroups %]
242                     [% IF ( basketgroup.default ) %]
243                     <option value="[% basketgroup.id %]" selected="selected">[% basketgroup.name %]</option>
244                     [% ELSE %]
245                     <option value="[% basketgroup.id %]">[% basketgroup.name %]</option>
246                     [% END %]
247                 [% END %]
248                 </select>
249                 <input type="hidden" id="basketno" value="[% basketno %]" name="basketno" />
250                 <input type="hidden" value="mod_basket" name="op" />
251                 <input type="hidden" name="booksellerid" value="[% booksellerid %]" />
252             </li>
253             <fieldset class="action"><input type="submit" value="Change basketgroup" /></fieldset>
254         [% END %]
255         </form>
256         [% END %]
257         </ol>
258     </fieldset>
259     </div>
260 [% END %]
261
262 <form action="/cgi-bin/koha/acqui/addorder.pl" method="post" id="Aform" onsubmit="return Check(this);">
263
264     <fieldset class="rows">
265         <legend>Patrons</legend>
266         <ol>
267             <li>
268                 <span class="label">To notify on receiving:</span>
269                 <div style="float:left">
270                     <ul id="users_names" style="padding-left:0">
271                       [% FOREACH user IN users %]
272                         <li id="user_[% user.borrowernumber %]">
273                             [% user.firstname %] [% user.surname %]
274                             [<a onclick="del_user([% user.borrowernumber %]);" style="cursor:pointer">Delete user</a>]
275                         </li>
276                       [% END %]
277                     </ul>
278                     <input type="hidden" id="users_ids" name="users_ids" value="[% users_ids %]" />
279                     <input type="hidden" id="op" name="op" value="mod_users" />
280                     <input type="button" id="add_user" onclick="UserSearchPopup();" value="Add user" />
281                 </div>
282             </li>
283         </ol>
284     </fieldset>
285
286 <fieldset class="rows">
287         <legend>
288             Catalog details
289             [% IF ( biblionumber ) %]
290                 <span><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% biblionumber %]"> Edit record</a></span>
291             [% END %]
292         </legend>
293         [% UNLESS ( existing ) %]
294         <input type="hidden" name="existing" value="no" />
295         [% END %]
296         <input type="hidden" name="ordernumber" value="[% ordernumber %]" />
297         <input type="hidden" name="basketno" value="[% basketno %]" />
298         <input type="hidden" name="booksellerid" value="[% booksellerid %]" />
299         <input type="hidden" name="biblionumber" value="[% biblionumber %]" />
300         <input type="hidden" name="listinc" id="listinc" value="[% listincgst %]" />
301         <input type="hidden" name="invoiceincgst" id="invoiceincgst" value="[% invoiceincgst %]" />
302         <input type="hidden" name="suggestionid" value="[% suggestionid %]" />
303         <input type="hidden" name="import_batch_id" value="[% import_batch_id %]" />
304
305         [% FOREACH loop_currencie IN loop_currencies %]
306             <input type="hidden" id="currency_rate_[% loop_currencie.currcode %]"  name="[% loop_currencie.currcode %]" value="[% loop_currencie.rate %]" />
307         [% END %]
308
309         <ol><li>
310             [% IF ( biblionumber ) %]
311             <span class="label">Title</span>
312                 <input type="hidden" name="title" value="[% title %]" /> <span class="title">[% title %]</span>
313             [% ELSE %]
314             <label for="entertitle" class="required">Title: </label>
315                 <input type="text" id="entertitle" size="50" name="title" value="[% title %]" class="focus" />
316                 <span class="required">Required</span>
317             [% END %]
318         </li>
319         <li>
320             [% IF ( biblionumber ) %]
321             <span class="label">Author: </span>
322                 <input type="hidden" name="author" id="author" value="[% author %]" />[% author %]
323             [% ELSE %]
324             <label for="author">Author: </label>
325                 <input type="text" size="50" name="author" id="author" value="[% author %]" />
326             [% END %]
327         </li>
328         <li>
329             [% IF ( biblionumber ) %]
330             <span class="label">Publisher: </span>
331                 <input type="hidden" name="publishercode" id="publishercode" value="[% publishercode %]" />[% publishercode %]
332             [% ELSE %]
333             <label for="publishercode"> Publisher: </label>
334                 <input type="text" size="50" name="publishercode" id="publishercode" value="[% publishercode %]" />
335             [% END %]
336         </li>
337         <li>
338             [% IF ( biblionumber ) %]
339             <span class="label">Edition: </span>
340                 <input type="hidden" name="editionstatement" id="editionstatement" value="[% editionstatement %]" />[% editionstatement %]
341
342             [% ELSE %]
343             <label for="editionstatement">Edition: </label>
344                 <input type="text" size="20" name="editionstatement" id="editionstatement" value="[% editionstatement %]" />
345             [% END %]
346         </li>
347         <li>
348             [% IF ( biblionumber ) %]
349             <span class="label">Publication year: </span>
350                 <input type="hidden" name="publicationyear" id="publicationyear" value="[% publicationyear %]" />[% publicationyear %]
351             [% ELSE %]
352             <label for="publicationyear">Publication year: </label>
353                 <input type="text" size="10" name="publicationyear" id="publicationyear" value="[% publicationyear %]" />
354             [% END %]
355         </li>
356         <li>
357             [% IF ( biblionumber ) %]
358             <span class="label">ISBN: </span>
359                 <input type="hidden" name="isbn" id="ISBN" value="[% isbn %]" />[% isbn %]
360             [% ELSE %]
361             <label for="ISBN">ISBN: </label>
362                 <input type="text" size="50" name="isbn" id="ISBN" value="[% isbn %]" />
363             [% END %]
364         </li>
365         [% IF (UNIMARC) %]
366         <li>
367             [% IF ( biblionumber ) %]
368             <span class="label">EAN: </span>
369                 <input type="hidden" name="ean" id="EAN" value="[% ean %]" />[% ean %]
370             [% ELSE %]
371             <label for="EAN">EAN: </label>
372                 <input type="text" size="20" name="ean" id="EAN" value="[% ean %]" />
373             [% END %]
374         </li>
375         [% END %]
376         <li>
377             [% IF ( biblionumber ) %]
378             <span class="label">Series: </span>
379                 <input type="hidden" name="series" id="series" value="[% seriestitle %]" />[% seriestitle %]
380             [% ELSE %]
381             <label for="series">Series: </label>
382                 <input type="text" size="50" name="series" id="series" value="[% seriestitle %]" />
383             [% END %]
384         </li>
385             [% UNLESS ( biblionumber ) %]
386             [% IF ( itemtypeloop ) %]
387             <li>
388                 <span class="label">Item type:</span>
389                 <select name="itemtype" style="width:12em;">
390                 [% FOREACH itemtype IN itemtypeloop %]
391                     [% IF ( itemtype.selected ) %]
392                         <option value="[% itemtype.itemtype %]" selected="selected">[% itemtype.description %]</option>
393                     [% ELSE %]
394                         <option value="[% itemtype.itemtype %]">[% itemtype.description %]</option>
395                     [% END %]
396                 [% END %]
397                 </select>
398             </li>
399             [% END %]
400             [% END %]
401         </ol>
402     </fieldset>
403
404     [% IF ( suggestionid ) %]
405         <fieldset class="rows">
406         <legend>Suggestion</legend>
407         <ol>
408           <li>
409             <span class="label">Suggested by: </span>
410             [% surnamesuggestedby %][% IF ( firstnamesuggestedby ) %], [% firstnamesuggestedby %][% END %] (<a href="/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% suggestionid %]&amp;op=show">suggestion #[% suggestionid %]</a>)
411           </li>
412         </ol>
413         </fieldset>
414     [% END %]
415
416     [% UNLESS subscriptionid %][% # it is a suggestion, we have not items %]
417       [% IF (AcqCreateItemOrdering) %]
418
419       <div id="items_list" style="display:none">
420           <p><b>Items list</b></p>
421           <div style="width:100%;overflow:auto;">
422               <table>
423                   <thead>
424                       <tr>
425                           <th>&nbsp;</th>
426                           <th>&nbsp;</th>
427                           <th>Barcode</th>
428                           <th>Home library</th>
429                           <th>Holding library</th>
430                           <th>Not for loan</th>
431                           <th>Restricted</th>
432                           <th>Location</th>
433                           <th>Call number</th>
434                           <th>Copy number</th>
435                           <th>Inventory number</th>
436                           <th>Collection code</th>
437                           <th>Item type</th>
438                           <th>Materials</th>
439                           <th>Notes</th>
440                       </tr>
441                   </thead>
442                   <tbody>
443                   </tbody>
444               </table>
445           </div>
446       </div>
447
448       <fieldset class="rows" id="itemfieldset">
449           <legend>Item</legend>
450           [% IF ( NoACQframework ) %]
451               <div class="dialog message">No ACQ framework, using default. You should create a framework with code ACQ, the items framework would be used</div>
452           [% END %]
453
454           <div id="outeritemblock"></div>
455
456       </fieldset>
457       [% END %][%# UNLESS subscriptionid %]
458     [% END %][%# IF (AcqCreateItemOrdering) %]
459     <fieldset class="rows">
460         <legend>Accounting details</legend>
461         <ol>
462             <li>
463                 [% IF ( close ) %]
464             <span class="label required">Quantity: </span>
465                     <input type="hidden" name="quantity" value="[% quantity %]" />[% quantity %]
466                 [% ELSE %]
467                     <label class="required" for="quantity">Quantity: </label>
468                     [% IF (AcqCreateItemOrdering) %]
469                         [% IF subscriptionid %]
470                             <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="1" />
471                         [% ELSE %]
472                             <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="0" />
473                         [% END %]
474                     [% ELSE %]
475                         [% IF subscriptionid %]
476                             <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="1" />
477                         [% ELSE %]
478                             <input type="text" size="20" id="quantity" name="quantity" value="[% quantityrec %]" onchange="updateCosts();" />
479                         [% END %]
480                     [% END %]
481                     <span class="required">Required</span>
482                 [% END %]
483                 <!-- origquantityrec only here for javascript compatibility (additem.js needs it, useless here, usefull when receiveing an order -->
484                 <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="1" />
485             </li>
486             <li>
487                 [% IF ( close ) %]
488             <span class="label required">Fund: </span>
489                     <input type="hidden" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
490                 [% ELSE %]
491                 <label class="required" for="budget_id">Fund: </label>
492                 [% active_count = 0 %]
493                 [% IF !ordernumber %]
494                     [% FOREACH budget_loo IN budget_loop %]
495                         [% active_count= active_count + budget_loo.b_active %]
496                     [% END %]
497                 [% END %]
498                 <select id="budget_id" size="1" name="budget_id">
499                     <option value="">Select a fund</option>
500                 [% FOREACH budget_loo IN budget_loop %]
501                     [% IF ( budget_loo.b_sel ) %]
502                         [% active_count = 0 #select no other fund %]
503                         <option value="[% budget_loo.b_id %]" selected="selected" data-sort1-authcat="[% budget_loo.b_sort1_authcat %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat %]">
504                     [% ELSIF active_count==1 && budget_loo.b_active %]
505                         <option value="[% budget_loo.b_id %]" selected="selected" data-sort1-authcat="[% budget_loo.b_sort1_authcat %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat %]">
506                     [% ELSE %]
507                         [% bdgclass=budget_loo.b_active? "": "b_inactive" %]
508                         <option value="[% budget_loo.b_id %]" class="[% bdgclass %]" data-sort1-authcat="[% budget_loo.b_sort1_authcat %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat %]">
509                     [% END %]
510                     [% budget_loo.b_txt %][% IF !budget_loo.b_active %] (inactive)[% END %]
511                     </option>
512                 [% END %]
513                 </select>
514                 <span class="required">Required</span>
515                 <label for="showallbudgets" style="float:none;">&nbsp;Show inactive:</label>
516                 <input type="checkbox" id="showallbudgets" />
517                 [% END %]
518             </li>
519                 <li>
520                 [% IF ( close ) %]
521                         <span class="label">Currency: </span>
522             <input type="hidden" name="currency" id="currency" value="[% currency %]" />[% currency %]
523                 [% ELSE %]
524                         <label for="currency">Currency:</label>
525                         <select name="currency" id="currency" onchange="updateCosts();">
526                         [% FOREACH loop_currencie IN loop_currencies %]
527                         [% IF ( loop_currencie.selected ) %]<option value="[% loop_currencie.currcode %]" selected="selected">[% loop_currencie.currcode %]</option>[% ELSE %]<option value="[% loop_currencie.currcode %]">[% loop_currencie.currcode %]</option>[% END %][% END %]
528                         </select>
529                 [% END %]
530                 </li>
531             <li>
532                 [% IF ( close ) %]
533                     <span class="label">Vendor price: </span>
534                     <input type="hidden" name="listprice" id="listprice" value="[% listprice %]" />[% listprice %] [% IF (listincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
535                 [% ELSE %]
536                 <label for="listprice">Vendor price: </label>
537                     <input type="text" size="20" name="listprice" id="listprice" value="[% listprice %]" onchange="updateCosts()" /> [% IF (listincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
538                 [% END %]
539             </li>
540             [% UNLESS ( close ) %]
541             <li>
542                     <label for="uncertainprice">Uncertain price: </label>
543                     [% IF ( uncertainprice ) %]
544                     <input type="checkbox" name="uncertainprice"  id="uncertainprice" value="1" checked="checked" />
545                     [% ELSE %]
546                     <input type="checkbox" name="uncertainprice" id="uncertainprice" value="1" />
547                 [% END %]
548             </li>
549             [% END %]
550             [% IF ( gst_values ) %]
551                 <li>
552                     [% IF ( close ) %]
553                         <span class="label">Tax rate: </span>
554                         <input type="hidden" name="gstrate" id="gstrate" value="[% gstrate %]" />[% gstrate %]%
555                     [% ELSE %]
556                         <label for="gstrate">Tax rate: </label>
557                         <select name="gstrate" id="gstrate" onchange="updateCosts();">
558                         [% FOREACH gst IN gst_values %]
559                           [% IF ( gst.option == gstrate ) %]
560                             <option value="[% gst.option %]" selected="selected">[% gst.option * 100 | format("%.1f") %]%</option>
561                           [% ELSE %]
562                             <option value="[% gst.option %]">[% gst.option * 100 | format("%.1f") %]%</option>
563                           [% END %]
564                         [% END %]
565                         </select>
566                     [% END %]
567                 [% ELSE %]
568                     <input type="hidden" name="gstrate" value="0" />
569                 </li>
570             [% END %]
571             <li>
572                 <label for="discount">Discount: </label>
573                 [% IF ( close ) %]
574                     [% IF ( orderdiscount ) %]
575                         <input type="hidden" name="discount" id="discount" value="[% orderdiscount %]" />[% orderdiscount_2dp %]%
576                     [% ELSE %]
577                         <input type="hidden" name="discount" id="discount" value="[% discount %]" />[% discount_2dp %]%
578                     [% END %]
579                 [% ELSE %]
580                     [% IF ( orderdiscount ) %]
581                         <input type="text" size="6" name="discount" id="discount" value="[% orderdiscount %]" onchange="updateCosts();" />%
582                     [% ELSE %]
583                         <input type="text" size="6" name="discount" id="discount" value="[% discount %]" onchange="updateCosts();" />%
584                     [% END %]
585                 [% END %]
586             </li>
587             <li>
588                 [% IF ( close ) %]
589                     <span class="label">Replacement cost: </span>
590                     <input type="hidden" name="rrp" id="rrp" value="[% rrp %]" />[% rrp %]  (adjusted for [% cur_active %], [% IF (listincgst == 1) %]tax inc.[% ELSE %]tax exc.[% END %])
591                 [% ELSE %]
592                     <label for="rrp">Replacement cost: </label>
593                     <input type="text" size="20" name="rrp" id="rrp" value="[% rrp %]" /> (adjusted for [% cur_active %], [% IF (listincgst == 1) %]tax inc.[% ELSE %]tax exc.[% END %])
594                 [% END %]
595             </li>
596             <li>
597                 <label for="ecost">Budgeted cost: </label>
598                 <input type="text" size="20" name="ecost" id="ecost" value="[% ecost %]" readonly="readonly"  /> [% IF (listincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
599             </li>
600             <li>
601                 <label for="total">Total: </label>
602                 <input type="text" id="total" size="20" name="total" value="[% total %]" readonly="readonly" /> (budgeted cost * quantity)
603             </li>
604             <li>
605                 [% IF ( close ) %]
606                     <label for="unitprice">Actual cost: </label>
607                     <input type="text" id="unitprice" size="20" name="unitprice" value="[% unitprice %]" readonly="readonly" /> [% IF (invoiceincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
608                 [% ELSE %]
609                     <label for="unitprice">Actual cost: </label>
610                     <input type="text" id="unitprice" size="20" name="unitprice" value="[% unitprice %]" /> [% IF (invoiceincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
611                 [% END %]
612             </li>
613             <li>
614                 <label for="order_internalnote">Internal note: </label>
615                 <textarea id="order_internalnote" cols="30" rows="3" name="order_internalnote" >[% IF ( order_internalnote ) %][% order_internalnote %][% END %]</textarea>
616             </li>
617             <li>
618                 <label for="order_vendornote">Vendor note: </label>
619                 <textarea id="order_vendornote" cols="30" rows="3" name="order_vendornote" >[% IF ( order_vendornote ) %][% order_vendornote %][% END %]</textarea>
620             </li>
621             <li><div class="hint">The 2 following fields are available for your own usage. They can be useful for statistical purposes</div>
622                 <label for="sort1">Statistic 1: </label>
623                 <input id="sort1" type="text" id="sort1" size="20" name="sort1" value="[% sort1 %]" />
624             <li>
625                 <label for="sort2">Statistic 2: </label>
626                 <input id="sort2" type="text" id="sort2" size="20" name="sort2" value="[% sort2 %]" />
627             </li>
628         </ol>
629     </fieldset>
630     <fieldset class="action">
631         <input type="hidden" name="subscriptionid" value="[% subscriptionid %]" />
632         <input type="submit" value="Save" />
633         [% IF (suggestionid) %]
634             <a class="cancel" href="/cgi-bin/koha/acqui/newordersuggestion.pl?booksellerid=[% booksellerid %]&amp;basketno=[% basketno %]">Cancel</a>
635         [% ELSE %]
636             [% IF subscriptionid %]
637                 <a class="cancel" href="/cgi-bin/koha/acqui/newordersubscription.pl?booksellerid=[% booksellerid %]&amp;basketno=[% basketno %]">Cancel</a>
638             [% ELSE %]
639                 <a class="cancel" href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno %]">Cancel</a>
640             [% END %]
641         [% END %]
642     </fieldset>
643 </form>
644 </div>
645 </div>
646 <div class="yui-b">
647 [% INCLUDE 'acquisitions-menu.inc' %]
648 </div>
649 </div>
650 [% INCLUDE 'intranet-bottom.inc' %]