Bug 12840: The budgeted cost and the total are automatically calculated
[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 </script>
165 </head>
166 <body id="acq_neworderempty" class="acq">
167
168 [% INCLUDE 'header.inc' %]
169 [% INCLUDE 'acquisitions-search.inc' %]
170
171 <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>
172
173 <div id="doc3" class="yui-t2">
174
175 <div id="bd">
176     <div id="yui-main">
177     <div class="yui-b">
178
179 <h2>
180     [% IF ( ordernumber ) %]
181         Modify order line
182     [% ELSE %]
183         New order
184     [% END %]
185 </h2>
186
187 <div class="error" style="display:none"></div>
188
189 [% IF ( basketno ) %]
190     <div id="acqui_basket_summary"  class="yui-g">
191     <fieldset class="rows">
192         <legend>Basket details</legend>
193         <ol>
194         [% IF ( basketnote ) %]<li><span class="label">Internal note:</span> [% basketnote %]</li>[% END %]
195         [% IF ( basketbooksellernote ) %]<li><span class="label">Vendor note:</span> [% basketbooksellernote %]</li>[% END %]
196         [% IF ( basketcontractno ) %]
197             <li><span class="label">Contract number: </span>[% basketcontractno %]</li>
198             <li><span class="label">Contract name:</span> <a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% basketcontractno %]">[% basketcontractname %]</a></li>
199         [% END %]
200         [% IF ( authorisedbyname ) %]<li><span class="label">Managed by:</span>  [% authorisedbyname %]</li>[% END %]
201         [% IF ( creationdate ) %]<li><span class="label">Open on:</span>  [% creationdate | $KohaDates %]</li>[% END %]
202         [% IF ( closedate ) %]
203         <form action="/cgi-bin/koha/acqui/basketgroup.pl" method="post">
204         <li><span class="label">Closed on:</span>  [% closedate | $KohaDates %]</li>
205         [% IF ( basketgroups ) %]
206             <li>Basketgroup: <select id="basketgroupid" name="basketgroupid">
207                 [% FOREACH basketgroup IN basketgroups %]
208                     [% IF ( basketgroup.default ) %]
209                     <option value="[% basketgroup.id %]" selected="selected">[% basketgroup.name %]</option>
210                     [% ELSE %]
211                     <option value="[% basketgroup.id %]">[% basketgroup.name %]</option>
212                     [% END %]
213                 [% END %]
214                 </select>
215                 <input type="hidden" id="basketno" value="[% basketno %]" name="basketno" />
216                 <input type="hidden" value="mod_basket" name="op" />
217                 <input type="hidden" name="booksellerid" value="[% booksellerid %]" />
218             </li>
219             <fieldset class="action"><input type="submit" value="Change basketgroup" /></fieldset>
220         [% END %]
221         </form>
222         [% END %]
223         </ol>
224     </fieldset>
225     </div>
226 [% END %]
227
228 <form action="/cgi-bin/koha/acqui/addorder.pl" method="post" id="Aform" onsubmit="return Check(this);">
229
230 <fieldset class="rows">
231         <legend>
232             Catalog details
233             [% IF ( biblionumber ) %]
234                 <span><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% biblionumber %]"> Edit record</a></span>
235             [% END %]
236         </legend>
237         [% UNLESS ( existing ) %]
238         <input type="hidden" name="existing" value="no" />
239         [% END %]
240         <input type="hidden" name="ordernumber" value="[% ordernumber %]" />
241         <input type="hidden" name="basketno" value="[% basketno %]" />
242         <input type="hidden" name="booksellerid" value="[% booksellerid %]" />
243         <input type="hidden" name="biblionumber" value="[% biblionumber %]" />
244         <input type="hidden" name="listinc" id="listinc" value="[% listincgst %]" />
245         <input type="hidden" name="applygst" id="applygst" value="[% gstreg %]" />
246         <input type="hidden" name="invoiceincgst" id="invoiceincgst" value="[% invoiceincgst %]" />
247         <input type="hidden" name="suggestionid" value="[% suggestionid %]" />
248         <input type="hidden" name="import_batch_id" value="[% import_batch_id %]" />
249
250         [% FOREACH loop_currencie IN loop_currencies %]
251             <input type="hidden" id="currency_rate_[% loop_currencie.currcode %]"  name="[% loop_currencie.currcode %]" value="[% loop_currencie.rate %]" />
252         [% END %]
253
254         <ol><li>
255             [% IF ( biblionumber ) %]
256             <span class="label">Title</span>
257                 <input type="hidden" name="title" value="[% title |html %]" /> <span class="title">[% title |html %]</span>
258             [% ELSE %]
259             <label for="entertitle" class="required">Title: </label>
260                 <input type="text" id="entertitle" size="50" name="title" value="[% title |html %]" class="focus" />
261                 <span class="required">Required</span>
262             [% END %]
263         </li>
264         <li>
265             [% IF ( biblionumber ) %]
266             <span class="label">Author: </span>
267                 <input type="hidden" name="author" id="author" value="[% author %]" />[% author %]
268             [% ELSE %]
269             <label for="author">Author: </label>
270                 <input type="text" size="50" name="author" id="author" value="[% author %]" />
271             [% END %]
272         </li>
273         <li>
274             [% IF ( biblionumber ) %]
275             <span class="label">Publisher: </span>
276                 <input type="hidden" name="publishercode" id="publishercode" value="[% publishercode %]" />[% publishercode %]
277             [% ELSE %]
278             <label for="publishercode"> Publisher: </label>
279                 <input type="text" size="50" name="publishercode" id="publishercode" value="[% publishercode %]" />
280             [% END %]
281         </li>
282         <li>
283             [% IF ( biblionumber ) %]
284             <span class="label">Edition: </span>
285                 <input type="hidden" name="editionstatement" id="editionstatement" value="[% editionstatement %]" />[% editionstatement %]
286
287             [% ELSE %]
288             <label for="editionstatement">Edition: </label>
289                 <input type="text" size="20" name="editionstatement" id="editionstatement" value="[% editionstatement %]" />
290             [% END %]
291         </li>
292         <li>
293             [% IF ( biblionumber ) %]
294             <span class="label">Publication year: </span>
295                 <input type="hidden" name="publicationyear" id="publicationyear" value="[% publicationyear %]" />[% publicationyear %]
296             [% ELSE %]
297             <label for="publicationyear">Publication year: </label>
298                 <input type="text" size="10" name="publicationyear" id="publicationyear" value="[% publicationyear %]" />
299             [% END %]
300         </li>
301         <li>
302             [% IF ( biblionumber ) %]
303             <span class="label">ISBN: </span>
304                 <input type="hidden" name="isbn" id="ISBN" value="[% isbn %]" />[% isbn %]
305             [% ELSE %]
306             <label for="ISBN">ISBN: </label>
307                 <input type="text" size="50" name="isbn" id="ISBN" value="[% isbn %]" />
308             [% END %]
309         </li>
310         [% IF (UNIMARC) %]
311         <li>
312             [% IF ( biblionumber ) %]
313             <span class="label">EAN: </span>
314                 <input type="hidden" name="ean" id="EAN" value="[% ean %]" />[% ean %]
315             [% ELSE %]
316             <label for="EAN">EAN: </label>
317                 <input type="text" size="20" name="ean" id="EAN" value="[% ean %]" />
318             [% END %]
319         </li>
320         [% END %]
321         <li>
322             [% IF ( biblionumber ) %]
323             <span class="label">Series: </span>
324                 <input type="hidden" name="series" id="series" value="[% seriestitle %]" />[% seriestitle %]
325             [% ELSE %]
326             <label for="series">Series: </label>
327                 <input type="text" size="50" name="series" id="series" value="[% seriestitle %]" />
328             [% END %]
329         </li>
330             [% UNLESS ( biblionumber ) %]
331             [% IF ( itemtypeloop ) %]
332             <li>
333                 <span class="label">Item type:</span>
334                 <select name="itemtype" style="width:12em;">
335                 [% FOREACH itemtype IN itemtypeloop %]
336                     [% IF ( itemtype.selected ) %]
337                         <option value="[% itemtype.itemtype %]" selected="selected">[% itemtype.description %]</option>
338                     [% ELSE %]
339                         <option value="[% itemtype.itemtype %]">[% itemtype.description %]</option>
340                     [% END %]
341                 [% END %]
342                 </select>
343             </li>
344             [% END %]
345             [% END %]
346         </ol>
347     </fieldset>
348
349     [% IF ( suggestionid ) %]
350         <fieldset class="rows">
351         <legend>Suggestion</legend>
352         <ol>
353           <li>
354             <span class="label">Suggested by: </span>
355             [% surnamesuggestedby %][% IF ( firstnamesuggestedby ) %], [% firstnamesuggestedby %][% END %] (<a href="/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% suggestionid %]&amp;op=show">suggestion #[% suggestionid %]</a>)
356           </li>
357         </ol>
358         </fieldset>
359     [% END %]
360
361     [% UNLESS subscriptionid %][% # it is a suggestion, we have not items %]
362       [% IF (AcqCreateItemOrdering) %]
363
364       <div id="items_list" style="display:none">
365           <p><b>Items list</b></p>
366           <div style="width:100%;overflow:auto;">
367               <table>
368                   <thead>
369                       <tr>
370                           <th>&nbsp;</th>
371                           <th>&nbsp;</th>
372                           <th>Barcode</th>
373                           <th>Home library</th>
374                           <th>Holding library</th>
375                           <th>Not for loan</th>
376                           <th>Restricted</th>
377                           <th>Location</th>
378                           <th>Call number</th>
379                           <th>Copy number</th>
380                           <th>Stock number</th>
381                           <th>Collection code</th>
382                           <th>Item type</th>
383                           <th>Materials</th>
384                           <th>Notes</th>
385                       </tr>
386                   </thead>
387                   <tbody>
388                   </tbody>
389               </table>
390           </div>
391       </div>
392
393       <fieldset class="rows" id="itemfieldset">
394           <legend>Item</legend>
395           [% IF ( NoACQframework ) %]
396               <div class="dialog message">No ACQ framework, using default. You should create a framework with code ACQ, the items framework would be used</div>
397           [% END %]
398
399           <div id="outeritemblock"></div>
400
401       </fieldset>
402       [% END %][%# UNLESS subscriptionid %]
403     [% END %][%# IF (AcqCreateItemOrdering) %]
404     <fieldset class="rows">
405         <legend>Accounting details</legend>
406         <ol>
407             <li>
408                 [% IF ( close ) %]
409             <span class="label required">Quantity: </span>
410                     <input type="hidden" name="quantity" value="[% quantity %]" />[% quantity %]
411                 [% ELSE %]
412                     <label class="required" for="quantity">Quantity: </label>
413                     [% IF (AcqCreateItemOrdering) %]
414                         [% IF subscriptionid %]
415                             <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="1" />
416                         [% ELSE %]
417                             <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="0" />
418                         [% END %]
419                     [% ELSE %]
420                         [% IF subscriptionid %]
421                             <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="1" />
422                         [% ELSE %]
423                             <input type="text" size="20" id="quantity" name="quantity" value="[% quantityrec %]" onchange="updateCosts();" />
424                         [% END %]
425                     [% END %]
426                     <span class="required">Required</span>
427                 [% END %]
428                 <!-- origquantityrec only here for javascript compatibility (additem.js needs it, useless here, usefull when receiveing an order -->
429                 <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="1" />
430             </li>
431             <li>
432                 [% IF ( close ) %]
433             <span class="label required">Fund: </span>
434                     <input type="hidden" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
435                 [% ELSE %]
436                 <label class="required" for="budget_id">Fund: </label>
437                 [% active_count = 0 %]
438                 [% IF !ordernumber %]
439                     [% FOREACH budget_loo IN budget_loop %]
440                         [% active_count= active_count + budget_loo.b_active %]
441                     [% END %]
442                 [% END %]
443                 <select id="budget_id" size="1" name="budget_id">
444                     <option value="">Select a fund</option>
445                 [% FOREACH budget_loo IN budget_loop %]
446                     [% IF ( budget_loo.b_sel ) %]
447                         [% active_count = 0 #select no other fund %]
448                         <option value="[% budget_loo.b_id %]" selected="selected" data-sort1-authcat="[% budget_loo.b_sort1_authcat %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat %]">
449                     [% ELSIF active_count==1 && budget_loo.b_active %]
450                         <option value="[% budget_loo.b_id %]" selected="selected" data-sort1-authcat="[% budget_loo.b_sort1_authcat %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat %]">
451                     [% ELSE %]
452                         [% bdgclass=budget_loo.b_active? "": "b_inactive" %]
453                         <option value="[% budget_loo.b_id %]" class="[% bdgclass %]" data-sort1-authcat="[% budget_loo.b_sort1_authcat %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat %]">
454                     [% END %]
455                     [% budget_loo.b_txt %][% IF !budget_loo.b_active %] (inactive)[% END %]
456                     </option>
457                 [% END %]
458                 </select>
459                 <span class="required">Required</span>
460                 <label for="showallbudgets" style="float:none;width:auto;">&nbsp;Show all:</label>
461                 <input type="checkbox" id="showallbudgets" />
462                 [% END %]
463             </li>
464                 <li>
465                 [% IF ( close ) %]
466                         <span class="label">Currency: </span>
467             <input type="hidden" name="currency" id="currency" value="[% currency %]" />[% currency %]
468                 [% ELSE %]
469                         <label for="currency">Currency:</label>
470                         <select name="currency" id="currency" onchange="updateCosts();">
471                         [% FOREACH loop_currencie IN loop_currencies %]
472                         [% 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 %]
473                         </select>
474                 [% END %]
475                 </li>
476             <li>
477                 [% IF ( close ) %]
478                     <span class="label">Vendor price: </span>
479                     <input type="hidden" name="listprice" id="listprice" value="[% listprice %]" />[% listprice %] [% IF (listincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
480                 [% ELSE %]
481                 <label for="listprice">Vendor price: </label>
482                     <input type="text" size="20" name="listprice" id="listprice" value="[% listprice %]" onchange="updateCosts()" /> [% IF (listincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
483                 [% END %]
484             </li>
485             [% UNLESS ( close ) %]
486             <li>
487                     <label for="uncertainprice">Uncertain price: </label>
488                     [% IF ( uncertainprice ) %]
489                     <input type="checkbox" name="uncertainprice"  id="uncertainprice" value="1" checked="checked" />
490                     [% ELSE %]
491                     <input type="checkbox" name="uncertainprice" id="uncertainprice" value="1" />
492                 [% END %]
493             </li>
494             [% END %]
495             [% IF ( gst_values ) %]
496                 <li>
497                     [% IF ( close ) %]
498                         <span class="label">Tax rate: </span>
499                         <input type="hidden" name="gstrate" id="gstrate" value="[% gstrate %]" />[% gstrate %]%
500                     [% ELSE %]
501                         <label for="gstrate">Tax rate: </label>
502                         <select name="gstrate" id="gstrate" onchange="updateCosts();">
503                         [% FOREACH gst IN gst_values %]
504                           [% IF ( gst.option == gstrate ) %]
505                             <option value="[% gst.option %]" selected="selected">[% gst.option * 100 | format("%.1f") %]%</option>
506                           [% ELSE %]
507                             <option value="[% gst.option %]">[% gst.option * 100 | format("%.1f") %]%</option>
508                           [% END %]
509                         [% END %]
510                         </select>
511                     [% END %]
512                 [% ELSE %]
513                     <input type="hidden" name="gstrate" value="0" />
514                 </li>
515             [% END %]
516             <li>
517                 <label for="discount">Discount: </label>
518                 [% IF ( close ) %]
519                     [% IF ( orderdiscount ) %]
520                         <input type="hidden" name="discount" id="discount" value="[% orderdiscount %]" />[% orderdiscount_2dp %]%
521                     [% ELSE %]
522                         <input type="hidden" name="discount" id="discount" value="[% discount %]" />[% discount_2dp %]%
523                     [% END %]
524                 [% ELSE %]
525                     [% IF ( orderdiscount ) %]
526                         <input type="text" size="6" name="discount" id="discount" value="[% orderdiscount %]" onchange="updateCosts();" />%
527                     [% ELSE %]
528                         <input type="text" size="6" name="discount" id="discount" value="[% discount %]" onchange="updateCosts();" />%
529                     [% END %]
530                 [% END %]
531             </li>
532             <li>
533                 [% IF ( close ) %]
534                     <span class="label">Replacement cost: </span>
535                     <input type="hidden" name="rrp" id="rrp" value="[% rrp %]" />[% rrp %]  (adjusted for [% cur_active %], [% IF (listincgst == 1) %]tax inc.[% ELSE %]tax exc.[% END %])
536                 [% ELSE %]
537                     <label for="rrp">Replacement cost: </label>
538                     <input type="text" size="20" name="rrp" id="rrp" value="[% rrp %]" /> (adjusted for [% cur_active %], [% IF (listincgst == 1) %]tax inc.[% ELSE %]tax exc.[% END %])
539                 [% END %]
540             </li>
541             <li>
542                 <label for="ecost">Budgeted cost: </label>
543                 <input type="text" size="20" name="ecost" id="ecost" value="[% ecost %]" readonly="readonly"  /> [% IF (listincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
544             </li>
545             <li>
546                 <label for="total">Total: </label>
547                 <input type="text" id="total" size="20" name="total" value="[% total %]" readonly="readonly" /> (budgeted cost * quantity)
548             </li>
549             <li>
550                 [% IF ( close ) %]
551                     <label for="unitprice">Actual cost: </label>
552                     <input type="text" id="unitprice" size="20" name="unitprice" value="[% unitprice %]" readonly="readonly" /> [% IF (invoiceincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
553                 [% ELSE %]
554                     <label for="unitprice">Actual cost: </label>
555                     <input type="text" id="unitprice" size="20" name="unitprice" value="[% unitprice %]" /> [% IF (invoiceincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
556                 [% END %]
557             </li>
558             <li>
559                 <label for="order_internalnote">Internal note: </label>
560                 <textarea id="order_internalnote" cols="30" rows="3" name="order_internalnote" >[% IF ( order_internalnote ) %][% order_internalnote %][% END %]</textarea>
561             </li>
562             <li>
563                 <label for="order_vendornote">Vendor note: </label>
564                 <textarea id="order_vendornote" cols="30" rows="3" name="order_vendornote" >[% IF ( order_vendornote ) %][% order_vendornote %][% END %]</textarea>
565             </li>
566             <li><div class="hint">The 2 following fields are available for your own usage. They can be useful for statistical purposes</div>
567                 <label for="sort1">Statistic 1: </label>
568                 <input id="sort1" type="text" id="sort1" size="20" name="sort1" value="[% sort1 %]" />
569             <li>
570                 <label for="sort2">Statistic 2: </label>
571                 <input id="sort2" type="text" id="sort2" size="20" name="sort2" value="[% sort2 %]" />
572             </li>
573         </ol>
574     </fieldset>
575     <fieldset class="action">
576         <input type="hidden" name="subscriptionid" value="[% subscriptionid %]" />
577         <input type="submit" value="Save" />
578         [% IF (suggestionid) %]
579             <a class="cancel" href="/cgi-bin/koha/acqui/newordersuggestion.pl?booksellerid=[% booksellerid %]&amp;basketno=[% basketno %]">Cancel</a>
580         [% ELSE %]
581             [% IF subscriptionid %]
582                 <a class="cancel" href="/cgi-bin/koha/acqui/newordersubscription.pl?booksellerid=[% booksellerid %]&amp;basketno=[% basketno %]">Cancel</a>
583             [% ELSE %]
584                 <a class="cancel" href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno %]">Cancel</a>
585             [% END %]
586         [% END %]
587     </fieldset>
588 </form>
589 </div>
590 </div>
591 <div class="yui-b">
592 [% INCLUDE 'acquisitions-menu.inc' %]
593 </div>
594 </div>
595 [% INCLUDE 'intranet-bottom.inc' %]