Bug 5917 / Bug 6085 : Fixing not being able to change language
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / neworderempty.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Acquisitions &rsaquo; Basket <!-- TMPL_VAR NAME="basketno" --> &rsaquo; <!-- TMPL_IF name="ordernumber" -->Modify order details (line #<!-- TMPL_VAR NAME="ordernumber" -->)<!-- TMPL_ELSE -->New order<!-- /TMPL_IF --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <script type="text/javascript" src="<!-- TMPL_VAR NAME='themelang' -->/js/acq.js"></script>
6 <script type="text/javascript" src="<!-- TMPL_VAR NAME='themelang' -->/js/additem.js"></script>
7 <script type="text/javascript">
8 //<![CDATA[
9 actTotal = "";
10
11 function Check(ff) {
12     var ok=0;
13     var _alertString= _("Form not submitted because of the following problem(s)")+"\n";
14
15     _alertString +="-------------------------------------------------------------------\n\n";
16
17     if ( isNull(ff.title,1)  &&  isNull(ff.entertitle,1)   ){
18         ok=1;
19                     _alertString += "\n- " + _("Title cannot be empty");
20     }
21     
22     if(isNull(ff.budget_id,1)){
23                 ok=1;
24                                         _alertString += "\n- "+ _("You must select a budget");
25     }
26
27     if (!(isNum(ff.quantity,0))){
28         ok=1;
29                     _alertString += "\n- " + _("Quantity must be greater than '0'");
30     }
31
32     if (!(isNum(ff.listprice,0))){
33         ok=1;
34                     _alertString += "\n- " + _("Vendor price must be a number");
35     }
36
37     if (!(isNum(ff.total,0))){
38         ok=1;
39                     _alertString += "\n- " + _("Total must be a number");
40     }
41
42     if (totalExceedsBudget(ff.budget_id.value, ff.total.value  )  ) {
43         ok=1;
44         _alertString += "\n- " + _("Order total (") + ff.total.value +
45             _(") exceeds budget available (") + actTotal+")";
46     }
47
48     if ( ff.field_value ) {
49         var empty_item_mandatory = 0;
50         for (i = 0; i < ff.field_value.length; i++) {
51             //alert("i = " + i + " => " + ff.kohafield[i] );
52             if (ff.field_value[i].value.length == 0 && ff.mandatory[i].value == 1) {
53                 empty_item_mandatory++;
54             }
55         }
56         if (empty_item_mandatory > 0) {
57             ok = 1;
58             _alertString +=
59                 "\n- " + empty_item_mandatory + _(" item mandatory fields empty");
60         }
61     }
62
63 if (ok) {
64         alert(_alertString);
65     return false;
66     }
67
68 ff.submit();
69
70 }
71
72 $(document).ready(function() 
73     {
74         //We apply the fonction only for modify option
75         <!--TMPL_IF NAME="quantityrec"-->
76         $('#quantity').blur(function() 
77         {
78             // if user decreases the quantity
79             if($(this).val() < <!-- TMPL_VAR name="quantityrec" -->) 
80             {
81                 alert(_("You have deleted item(s) in the order, don't forget to delete it(them) in the catalog"));
82                 return true;
83             } 
84             else 
85             {
86                 // if user increases the quantity
87                 alert(_("You can't add a new item, please create a new order line"));
88                 // and we replace the original value
89                 $(this).val(<!-- TMPL_VAR name="quantityrec" -->)
90                 return false;
91             }
92         });
93         <!-- /TMPL_IF -->
94         
95         $('#showallbudgets').click(function() {
96             if ( $('#budget_id .b_inactive').is(":visible") )
97             {
98             $('#budget_id .b_inactive').hide();
99             }
100             else {
101             $('#budget_id .b_inactive').show();
102             }
103         });
104     });
105 //]]>
106 </script>
107 </head>
108 <body>
109
110 <!-- TMPL_INCLUDE NAME="header.inc" -->
111 <!-- TMPL_INCLUDE NAME="acquisitions-search.inc" -->
112
113 <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/basket.pl?basketno=<!-- TMPL_VAR NAME="basketno" -->">Basket <!-- TMPL_VAR NAME="basketno" --></a> &rsaquo; <!-- TMPL_IF name="ordernumber" -->Modify order details (line #<!-- TMPL_VAR NAME="ordernumber" -->)<!-- TMPL_ELSE -->New order<!-- /TMPL_IF --></div>
114
115 <div id="doc3" class="yui-t2">
116
117 <div id="bd">
118     <div id="yui-main">
119     <div class="yui-b">
120
121 <h2>
122     <!-- TMPL_IF name="ordernumber" -->
123         Modify order line
124     <!-- TMPL_ELSE -->
125         New order
126     <!-- /TMPL_IF -->
127         <!-- TMPL_IF name="suggestionid" -->(defined from suggestion #<!-- TMPL_VAR NAME="suggestionid" -->)<!-- /TMPL_IF -->
128 </h2>
129
130 <!-- TMPL_IF name="basketno" -->
131     <div id="acqui_basket_summary"  class="yui-g">
132         <fieldset class="rows">
133         <legend>Basket details</legend>
134                 <ol>
135         <!-- TMPL_IF NAME="basketnote" --><li><span class="label">Internal note:</span> <!-- TMPL_VAR NAME="basketnote" --></li><!-- /TMPL_IF -->
136         <!-- TMPL_IF NAME="basketbooksellernote" --><li><span class="label">Vendor note:</span> <!-- TMPL_VAR NAME="basketbooksellernote" --></li><!-- /TMPL_IF -->
137         <!-- TMPL_IF NAME="basketcontractno" -->
138             <li><span class="label">Contract number: </span><!-- TMPL_VAR NAME="basketcontractno" --></li>
139             <li><span class="label">Contract name:</span> <a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=<!-- TMPL_VAR NAME="basketcontractno" -->"><!-- TMPL_VAR NAME="basketcontractname" --></a></li>
140         <!-- /TMPL_IF -->
141         <!-- TMPL_IF NAME="authorisedbyname" --><li><span class="label">Managed by:</span>  <!-- TMPL_VAR NAME="authorisedbyname" --></li><!-- /TMPL_IF -->
142         <!-- TMPL_IF NAME="creationdate" --><li><span class="label">Open on:</span>  <!-- TMPL_VAR NAME="creationdate" --></li><!-- /TMPL_IF -->
143         <!-- TMPL_IF name="closedate" -->
144         <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="post">
145         <li><span class="label">Closed on:</span>  <!-- TMPL_VAR name="closedate" --></li>
146         <!-- TMPL_IF name="basketgroups" -->
147             <li>Basketgroup: <select id="basketgroupid" name="basketgroupid">
148                 <!-- TMPL_LOOP name="basketgroups" -->
149                     <!-- TMPL_IF name="default" -->
150                     <option value="<!-- TMPL_VAR name="id" -->" selected="selected"><!-- TMPL_VAR name="name" --></option>
151                     <!-- TMPL_ELSE -->
152                     <option value="<!-- TMPL_VAR name="id" -->"><!-- TMPL_VAR name="name" --></option>
153                     <!-- /TMPL_IF -->
154                 <!-- /TMPL_LOOP -->
155                 </select>
156                 <input type="hidden" id="basketno" value="<!-- TMPL_VAR name="basketno" -->" name="basketno" />
157                 <input type="hidden" value="mod_basket" name="op" />
158                 <input type="hidden" name="booksellerid" value="<!-- TMPL_VAR name="booksellerid" -->" />
159             </li>
160                 <fieldset class="action"><input type="submit" value="Change basketgroup" /></fieldset>
161         </form>
162         <!-- /TMPL_IF -->
163         <!-- /TMPL_IF -->
164                         </ol>
165 </fieldset>
166     </div>
167 <!-- /TMPL_IF -->
168
169 <form action="/cgi-bin/koha/acqui/addorder.pl" method="post" id="Aform">
170
171 <fieldset class="rows">
172         <legend>
173             Catalog details
174             <!-- TMPL_IF name="biblionumber" -->
175                 <span><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!--TMPL_VAR NAME= "biblionumber"-->"> Edit record</a></span>
176             <!-- /TMPL_IF -->
177         </legend>
178         <!-- TMPL_UNLESS name="existing" -->
179         <input type="hidden" name="existing" value="no" />
180         <!-- /TMPL_UNLESS -->
181         <input type="hidden" name="ordernumber" value="<!-- TMPL_VAR NAME="ordernumber" -->" />
182         <input type="hidden" name="basketno" value="<!-- TMPL_VAR NAME="basketno" -->" />
183         <input type="hidden" name="booksellerid" value="<!-- TMPL_VAR NAME="booksellerid" -->" />
184         <input type="hidden" name="biblionumber" value="<!-- TMPL_VAR NAME="biblionumber" -->" />
185         <input type="hidden" name="biblioitemnumber" value="<!-- TMPL_VAR NAME="biblioitemnumber" -->" />
186         <input type="hidden" name="discount" value="<!-- TMPL_VAR NAME="discount" -->" />
187         <input type="hidden" name="listinc" value="<!-- TMPL_VAR NAME="listincgst" -->" />
188 <!--        <input type="hidden" name="currency" value="<!-- TMPL_VAR NAME="currency" -->" />-->
189         <input type="hidden" name="applygst" value="<!-- TMPL_VAR NAME="gstreg" -->" />
190         <input type="hidden" name="invoiceincgst" value="<!-- TMPL_VAR NAME="invoiceincgst" -->" />
191         <input type="hidden" name="gstrate" value="<!-- TMPL_VAR NAME="gstrate" -->" />
192         <input type="hidden" name="suggestionid" value="<!-- TMPL_VAR NAME="suggestionid" -->" />
193         <input type="hidden" name="import_batch_id" value="<!-- TMPL_VAR name="import_batch_id" -->" />
194
195         <!-- TMPL_LOOP NAME="loop_currencies" -->
196             <input type="hidden" id="<!-- TMPL_VAR NAME="currcode" -->"  name="<!-- TMPL_VAR NAME="currcode" -->" value="<!-- TMPL_VAR NAME="rate" -->" />
197         <!-- /TMPL_LOOP -->
198         <ol><li>
199             <!-- TMPL_IF name="biblionumber" -->
200             <span class="label">Title</span>
201                 <input type="hidden" size="50" name="title" value="<!-- TMPL_VAR NAME="title" ESCAPE="HTML" -->" /> <span class="title"><!-- TMPL_VAR NAME="title" ESCAPE="html" --></span>
202             <!-- TMPL_ELSE -->
203             <label for="entertitle" class="required">Title: </label>
204                 <input type="text" id="entertitle" size="50" name="title" value="<!-- TMPL_VAR NAME="title" ESCAPE="html" -->" />
205             <!-- /TMPL_IF -->
206         </li>
207         <li>
208             <!-- TMPL_IF name="biblionumber" -->
209             <span class="label">Author: </span>
210                 <input type="hidden" size="50" name="author" id="author" value="<!-- TMPL_VAR NAME="author" -->" /><!-- TMPL_VAR NAME="author" -->
211             <!-- TMPL_ELSE -->
212             <label for="author">Author: </label>
213                 <input type="text" size="50" name="author" id="author" value="<!-- TMPL_VAR NAME="author" -->" />
214             <!-- /TMPL_IF -->
215         </li>
216         <li>
217             <!-- TMPL_IF name="biblionumber" -->
218             <span class="label">Publisher: </span>
219                 <input type="hidden" size="50" name="publishercode" id="publishercode" value="<!-- TMPL_VAR NAME="publishercode" -->" /><!-- TMPL_VAR NAME="publishercode" -->
220             <!-- TMPL_ELSE -->
221             <label for="publishercode"> Publisher: </label>
222                 <input type="text" size="50" name="publishercode" id="publishercode" value="<!-- TMPL_VAR NAME="publishercode" -->" />
223             <!-- /TMPL_IF -->
224         </li>
225         <li>
226             <!-- TMPL_IF name="biblionumber" -->
227             <span class="label">Publication year: </span>
228                 <input type="hidden" size="10" name="publicationyear" id="publicationyear" value="<!-- TMPL_VAR NAME="publicationyear" -->" /><!-- TMPL_VAR NAME="publicationyear" -->
229             <!-- TMPL_ELSE -->
230             <label for="publicationyear">Publication year: </label>
231                 <input type="text" size="10" name="publicationyear" id="publicationyear" value="<!-- TMPL_VAR NAME="publicationyear" -->" />
232             <!-- /TMPL_IF -->
233         </li>
234         <li>
235             <!-- TMPL_IF name="biblionumber" -->
236             <span class="label">ISBN: </span>
237                 <input type="hidden" size="50" name="isbn" id="ISBN" value="<!-- TMPL_VAR NAME="isbn" -->" /><!-- TMPL_VAR NAME="isbn" -->
238             <!-- TMPL_ELSE -->
239             <label for="ISBN">ISBN: </label>
240                 <input type="text" size="50" name="isbn" id="ISBN" value="<!-- TMPL_VAR NAME="isbn" -->" />
241             <!-- /TMPL_IF -->
242         </li>
243         <li>
244             <!-- TMPL_IF name="biblionumber" -->
245             <span class="label">Series: </span>
246                 <input type="hidden" size="50" name="series" id="series" value="<!-- TMPL_VAR NAME="seriestitle" -->" /><!-- TMPL_VAR NAME="seriestitle" -->
247             <!-- TMPL_ELSE -->
248             <label for="series">Series: </label>
249                 <input type="text" size="50" name="series" id="series" value="<!-- TMPL_VAR NAME="seriestitle" -->" />
250             <!-- /TMPL_IF -->
251         </li>
252         </ol>
253     </fieldset>
254     <!-- TMPL_IF name="items" -->
255     <fieldset class="rows">
256         <legend>Item</legend>
257         <!-- TMPL_IF name="NoACQframework" -->
258             <div class="dialog message">No ACQ framework, using default. You should create a framework with code ACQ, the items framework would be used</div>
259         <!-- /TMPL_IF -->
260
261         <!-- TMPL_LOOP NAME="items" -->
262         <div id="outeritemblock">
263         <div id="itemblock">
264             <ol><!-- TMPL_LOOP NAME="iteminformation" --><li>
265                 <div class="subfield_line" style="<!-- TMPL_VAR NAME='hidden' -->;" id="subfield<!-- TMPL_VAR NAME='serialid' --><!-- TMPL_VAR NAME='countitems' --><!-- TMPL_VAR NAME='subfield' --><!-- TMPL_VAR name="random" -->">
266
267                     <label><!-- TMPL_VAR NAME="subfield" --> - <!-- TMPL_IF name="mandatory" --><b><!-- /TMPL_IF --><!-- TMPL_VAR NAME="marc_lib" --><!-- TMPL_IF name="mandatory" --> *</b><!-- /TMPL_IF --></label>
268                     <!-- TMPL_VAR NAME="marc_value" -->
269                     <input type="hidden" name="itemid" value="1" />
270                     <input type="hidden" name="kohafield" value="<!-- TMPL_VAR NAME="kohafield" -->" />
271                     <input type="hidden" name="tag" value="<!-- TMPL_VAR NAME="tag" -->" />
272                     <input type="hidden" name="subfield" value="<!-- TMPL_VAR NAME="subfield" -->" />
273                     <input type="hidden" name="mandatory" value="<!-- TMPL_VAR NAME="mandatory" -->" />
274                     <!-- TMPL_IF NAME="ITEM_SUBFIELDS_ARE_NOT_REPEATABLE" -->
275                         <span class="buttonPlus" onclick="CloneSubfield('subfield<!-- TMPL_VAR NAME='serialid' --><!-- TMPL_VAR NAME='countitems' --><!-- TMPL_VAR NAME='subfield' --><!-- TMPL_VAR name="random" -->')">+</span>
276                     <!-- /TMPL_IF -->
277
278                 </div></li>
279             <!-- /TMPL_LOOP-->
280             </ol>
281             <a style="cursor: pointer; color: grey; font-size: 180%;" onclick="cloneItemBlock('itemblock<!-- TMPL_VAR name="itemBlockIndex" -->')">+</a>
282             <a style="display:none; cursor: pointer; color: grey; font-size: 180%;" onclick="deleteItemBlock('itemblock<!-- TMPL_VAR name="itemBlockIndex" -->')">-</a>
283         </div><!-- /iteminformation -->
284         </div>
285
286         <!--/TMPL_LOOP--> <!-- /items -->
287     </fieldset>
288     <!-- /TMPL_IF --> <!-- items -->
289     <fieldset class="rows">
290         <legend>Accounting Details</legend>
291         <ol>
292             <li>
293                 <!-- TMPL_IF name="close" -->
294             <span class="label required">Quantity: </span>
295                     <input type="hidden" size="20" name="quantity" value="<!-- TMPL_VAR NAME="quantity" -->" /><!-- TMPL_VAR NAME="quantity" -->
296                 <!-- TMPL_ELSE -->
297                 <label class="required" for="quantity">Quantity: </label>
298                     <!-- TMPL_IF name="items" -->
299                         <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="1" onchange="calcNeworderTotal();" />
300                     <!-- TMPL_ELSE -->
301                         <input type="text" size="20" id="quantity" name="quantity" value="<!-- TMPL_VAR name="quantityrec" -->" onchange="calcNeworderTotal();" />
302                     <!-- /TMPL_IF -->
303                 <!--/TMPL_IF-->
304                 <!-- origquantityrec only here for javascript compatibility (additem.js needs it, useless here, usefull when receiveing an order -->
305                 <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="1" />
306             </li>
307             <li>
308                 <!-- TMPL_IF name="close" -->
309             <span class="label">Fund: </span>
310                     <input type="hidden" size="20" name="budget_id" id="budget_id" value="<!-- TMPL_VAR NAME="budget_id" -->" /><!-- TMPL_VAR NAME="Budget_name" -->
311                 <!-- TMPL_ELSE -->
312                 <label for="budget_id">Fund: </label>
313                 <select id="budget_id" onchange="fetchSortDropbox(this.form)" size="1" name="budget_id">
314                 <!-- TMPL_LOOP NAME="budget_loop" -->
315                     <!-- TMPL_IF NAME="b_sel" -->
316                         <option value="<!-- TMPL_VAR NAME='b_id' -->" selected="selected"><!-- TMPL_VAR NAME="b_txt" --></option>
317                     <!-- TMPL_ELSE -->
318                         <!-- TMPL_IF NAME="b_active" --><option value="<!-- TMPL_VAR NAME='b_id' -->"><!-- TMPL_VAR NAME="b_txt" --></option>
319                         <!-- TMPL_ELSE --><option value="<!-- TMPL_VAR NAME='b_id' -->" class="b_inactive" style="display : none;"><!-- TMPL_VAR NAME="b_txt" --></option>    
320                         <!-- /TMPL_IF -->
321                     <!-- /TMPL_IF -->
322                 <!-- /TMPL_LOOP -->
323                 </select>
324                 <label for="showallbudgets" style="float:none;width:auto;">&nbsp;Show all:</label>
325                 <input type="checkbox" id="showallbudgets" />
326                 <!--/TMPL_IF-->
327             </li>
328                 <li>
329                 <!-- TMPL_IF name="close" -->
330                         <span class="label">Currency: </span>
331                         <input type="hidden" size="10" name="currency" id="currency" value="<!-- TMPL_VAR NAME="currency" -->" /><!-- TMPL_VAR NAME="currency" -->
332                 <!-- TMPL_ELSE -->
333                         <label for="currency">Currency:</label>
334                         <select name="currency" id="currency" onchange="calcNeworderTotal();">
335                         <!-- TMPL_LOOP name="loop_currencies" -->
336                         <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR name="currcode" -->" selected="selected"><!-- TMPL_VAR name="currcode" --></option><!-- TMPL_ELSE --><option value="<!-- TMPL_VAR name="currcode" -->"><!-- TMPL_VAR name="currcode" --></option><!-- /TMPL_IF --><!-- /TMPL_LOOP -->
337                         </select>
338                 <!-- /TMPL_IF-->
339                 </li>
340             <li>
341                 <!-- TMPL_IF name="close" -->
342             <span class="label">Vendor price: </span>
343                     <input type="hidden" size="20" name="listprice" id="listprice" value="<!-- TMPL_VAR NAME="listprice" -->" /><!-- TMPL_VAR NAME="listprice" -->
344                 <!-- TMPL_ELSE -->
345                 <label for="listprice">Vendor price: </label>
346                     <input type="text" size="20" name="listprice" id="listprice" value="<!-- TMPL_VAR NAME="listprice" -->" onchange="calcNeworderTotal()" />
347                 <!--/TMPL_IF-->
348             </li>
349             <!-- TMPL_UNLESS NAME="close" -->
350             <li>
351                     <label for="uncertainprice">Uncertain price: </label>
352                     <!--TMPL_IF NAME="uncertainprice" -->
353                     <input type="checkbox" name="uncertainprice"  id="uncertainprice" value="1" checked="checked" />
354                     <!-- TMPL_ELSE -->
355                     <input type="checkbox" name="uncertainprice" id="uncertainprice" value="1" />
356                 <!--/TMPL_IF-->
357             </li>
358             <!-- /TMPL_UNLESS -->
359                         <li>
360                 <!-- TMPL_IF name="close" -->
361             <span class="label">Replacement cost: </span>
362                     <input type="hidden" size="20" name="rrp" id="rrp" value="<!-- TMPL_VAR NAME="rrp" -->" /><!-- TMPL_VAR NAME="rrp" -->
363                 <!-- TMPL_ELSE -->
364                 <label for="rrp">Replacement cost: </label>
365                     <input type="text" size="20" name="rrp" id="rrp" value="<!-- TMPL_VAR NAME="rrp" -->" /> (adjusted for <!-- TMPL_VAR NAME="cur_active" -->)
366                 <!--/TMPL_IF-->
367             </li>
368             <li>
369                 <!-- TMPL_IF name="close" -->
370             <label for="ecost">Budgeted cost: </label>
371                     <input type="text" size="20" name="ecost" id="ecost" value="<!-- TMPL_VAR NAME="ecost" -->" readonly="readonly"  />
372                 <!-- TMPL_ELSE -->
373                 <label for="ecost">Budgeted cost: </label>
374                     <input type="text" size="20" name="ecost" id="ecost" value="<!-- TMPL_VAR NAME="ecost" -->" />
375                 <!--/TMPL_IF-->
376                 <!-- TMPL_IF name="discount_2dp" -->  (adjusted for <!-- TMPL_VAR name="discount_2dp" -->% discount)  <!--/TMPL_IF-->
377
378             </li>
379             <!-- TMPL_IF NAME="GST"-->
380             <li>
381                 <!-- TMPL_IF name="close" -->
382             <label for="GST">Budgeted GST: </label>
383                 <input type="text" id="" size="20" name="gst" value="" id="GST" readonly="readonly" />
384                 <!-- TMPL_ELSE -->
385                 <label for="GST">Budgeted GST: </label>
386                 <input type="text" size="20" name="gst" id="GST" value="" />
387                 <!--/TMPL_IF-->
388             </li>
389             <!-- /TMPL_IF -->
390             <li>
391                 <!-- TMPL_IF name="close" -->
392             <label for="total">Total: </label>
393                 <input type="text" id="total" size="20" name="total" value="<!-- TMPL_VAR name="total" -->" readonly="readonly" />
394                 <!-- TMPL_ELSE -->
395                 <label for="total">Total: </label>
396                 <input type="text" id="total" size="20" name="total" value="<!-- TMPL_VAR name="total" -->" /> (budgeted cost * quantity)
397                 <!--/TMPL_IF-->
398             </li>
399             <li>
400                 <!-- TMPL_IF name="close" -->
401             <label for="cost">Actual cost: </label>
402                 <input type="text" id="cost" size="20" name="cost" value="<!-- TMPL_VAR name="ecost"-->" readonly="readonly" />
403                 <!-- TMPL_ELSE -->
404                 <label for="cost">Actual cost: </label>
405                 <input type="text" id="cost" size="20" name="cost" value="<!-- TMPL_VAR name="ecost"-->" />
406                 <!--/TMPL_IF-->
407             </li>
408             <li>
409                 <label for="notes">Notes: </label>
410                 <textarea id="notes" cols="30" rows="3" name="notes" ><!-- TMPL_VAR name="notes"--></textarea>
411             </li>
412             <li><div class="hint">The 2 following fields are available for your own usage. They can be useful for statistical purposes</div>
413                 <label for="sort1">Statistic 1: </label>
414
415                 <!-- TMPL_IF Name="CGIsort1" -->
416                     <!-- TMPL_VAR Name="CGIsort1" -->
417                 <!-- TMPL_ELSE -->
418
419                     <input type="text" id="sort1" size="20" name="sort1" value="<!-- TMPL_VAR NAME="sort1" -->" />
420                 <!--/TMPL_IF -->
421             </li>
422             <li>
423                 <label for="sort2">Statistic 2: </label>
424
425                 <!-- TMPL_IF Name="CGIsort2" -->
426                     <!-- TMPL_VAR Name="CGIsort2" -->
427                 <!-- TMPL_ELSE -->
428                     <input type="text" id="sort2" size="20" name="sort2" value="<!-- TMPL_VAR NAME="sort2" -->" />
429                 <!--/TMPL_IF -->
430             </li>
431 </ol>
432     </fieldset>
433     <fieldset class="action">
434         <input type="button" value="Save" onclick="Check(this.form)" /> <!-- TMPL_IF name="suggestionid" --><a class="cancel" href="/cgi-bin/koha/acqui/newordersuggestion.pl?booksellerid=<!-- TMPL_VAR NAME="booksellerid" -->&amp;basketno=<!-- TMPL_VAR NAME="basketno" -->">Cancel</a><!-- TMPL_ELSE --><a class="cancel" href="/cgi-bin/koha/acqui/basket.pl?basketno=<!-- TMPL_VAR NAME="basketno" -->">Cancel</a><!-- /TMPL_IF -->
435     </fieldset>
436 </form>
437 </div>
438 </div>
439 <div class="yui-b">
440 <!-- TMPL_INCLUDE NAME="acquisitions-menu.inc" -->
441 </div>
442 </div>
443 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->