Bug 15099: Move admin/categorie.pl to admin/categories.pl
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / aqbudgets.tt
1 [% USE Price %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Administration &rsaquo; Funds[% IF op == 'add_form' %] &rsaquo; [% IF ( budget_id ) %]Modify fund[% IF ( budget_name ) %] '[% budget_name %]'[% END %][% ELSE %]Add fund [% END %][% END %]</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 <script type="text/javascript">
6 //<![CDATA[
7 var MSG_BUDGET_PARENT_ALLOCATION = "- " + _("Fund amount exceeds parent allocation") + "\n";
8 var MSG_BUDGET_PERIOD_ALLOCATION = "- " + _("Fund amount exceeds period allocation") + "\n";
9 var MSG_PARENT_BENEATH_BUDGET = "- " + _("New budget-parent is beneath budget") + "\n";
10 //]]>
11 </script>
12
13 <script type="text/javascript" src="[% themelang %]/js/acq.js"></script>
14 [% IF op == 'add_form' %]
15 <script type="text/javascript">
16 //<![CDATA[
17
18     function userPopup() {
19         window.open("/cgi-bin/koha/admin/add_user_search.pl?selection_type=add",
20             'PatronPopup',
21             'width=740,height=450,location=yes,toolbar=no,'
22             + 'scrollbars=yes,resize=yes'
23         );
24     }
25
26     function ownerPopup() {
27         window.open("/cgi-bin/koha/admin/add_user_search.pl?selection_type=select",
28             'PatronPopup',
29             'width=740,height=450,location=yes,toolbar=no,'
30             + 'scrollbars=yes,resize=yes'
31         );
32     }
33
34     function select_user(borrowernumber, borrower) {
35         ownerRemove();
36         var borrowername = borrower.firstname + ' ' + borrower.surname
37         if (borrowernumber) {
38             var ownerlink = '<a href="/cgi-bin/koha/members/moremember.pl'
39                 + '?borrowernumber=' + borrowernumber + '">'
40                 + borrowername + '</a>';
41             $('#budget_owner_name').html(ownerlink);
42             $('#budget_owner_id').val(borrowernumber);
43         }
44     }
45
46     function ownerRemove() {
47         $('#budget_owner_name').empty();
48         $('#budget_owner_id').val('');
49     }
50
51     function add_user(borrowernumber, borrowername) {
52         var ids = $("#budget_users_id").val().split(':');
53         if(borrowernumber && ids.indexOf(borrowernumber) == -1) {
54             var li = '<li id="user_' + borrowernumber + '">'
55                 + '<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber='
56                 + borrowernumber + '">' + borrowername
57                 + '</a> [<a style="cursor:pointer"'
58                 + 'onclick="del_user(' + borrowernumber +')">Remove</a>]</li>';
59             $(li).insertBefore("li#add_user_button");
60             ids.push(borrowernumber);
61             $("#budget_users_id").val(ids.join(':'));
62         } else {
63             return -1;
64         }
65         return 0;
66     }
67
68     function del_user(borrowernumber) {
69         var ids = $("#budget_users_id").val().split(':');
70         if (borrowernumber) {
71             var idx = ids.indexOf(borrowernumber+'');
72             if (idx != -1) {
73                 ids.splice(idx, 1);
74                 $("#budget_users_id").val(ids.join(':'));
75                 $("li#user_" + borrowernumber).remove();
76             }
77         }
78     }
79
80     function Check(f) {
81         var ok=1;
82         var _alertString="";
83         var alertString2;
84
85         if (!(isNotNull(f.budget_code,1))) {
86             _alertString += _("- Budget code cannot be blank") + "\n";
87         }
88
89         if (!(isNotNull(f.budget_name,1))) {
90             _alertString += _("- Budget name cannot be blank") + "\n";
91         }
92
93         if (!(isNotNull(f.budget_amount,1))) {
94             _alertString += _("- Budget amount cannot be blank") + "\n";
95         }
96
97         var budgetId;
98         if   (typeof(f.budget_id ) != "undefined")  {
99             budgetId = f.budget_id.value
100         }
101
102         var newBudgetParent;
103
104 //  hack to test if selected parent_id in scrolling-list...
105 //  if value == 'undef' its got a selected_parent :/
106         if(f.budget_parent_id){
107             var chkAdd   =  f.budget_parent_id.value ;
108             if  (     typeof(chkAdd ) != "undefined") {
109                 newBudgetParent  =  f.budget_parent_id.value
110             } else {
111                 newBudgetParent  =  f.budget_parent_id.item(0).value
112             }
113
114             if   (budgetId  > 0)  {  ; //its a mod ...
115                 // if parent == curent-budget, fail...
116                 if ( newBudgetParent  ==  budgetId     ) {
117                         _alertString += _("- Budget parent is current budget") + "\n";
118                 }
119
120                 else if (newBudgetParent) {
121                     var result = checkBudgetParent(  budgetId , newBudgetParent   );
122                     if (result) {
123                         _alertString += result;
124                     }
125                 }
126             }
127         }
128
129          // else do lookup
130         var budgetTotal = Math.abs(f.budget_amount.value);
131         var result =   budgetExceedsParent  (budgetTotal, budgetId, newBudgetParent, f.budget_period_id.value)
132         if (result) {
133             _alertString += result;
134         }
135
136         if (_alertString.length==0) {
137             document.Aform.submit();
138         } else {
139             alertString2 = _("Form not submitted because of the following problem(s)");
140             alertString2 += "\n------------------------------------------------------------------------------------\n\n";
141             alertString2 += _alertString;
142             alert(alertString2);
143         }
144     }
145 //]]>
146 </script>
147 [% ELSIF op == 'list' %]
148     <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
149     [% INCLUDE 'datatables.inc' %]
150     <link href="[% interface %]/lib/jquery/plugins/treetable/stylesheets/jquery.treetable.css" rel="stylesheet" type="text/css" />
151     <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/treetable/jquery.treetable.js"></script>
152
153 <script type="text/javascript">
154 //<![CDATA[
155     //
156     $(document).ready(function() {
157
158
159         var oTable = $("#budgeth").dataTable($.extend(true, {}, dataTablesDefaults, {
160             "fnDrawCallback": function ( oSettings ) {
161                 if ( oSettings.aiDisplay.length == 0 )
162                 {
163                     return;
164                 }
165
166                 var nTrs = $('#budgeth tbody tr');
167                 var iColspan = nTrs[0].getElementsByTagName('td').length;
168                 var sLastGroup = "";
169                 for ( var i=0 ; i<nTrs.length ; i++ )
170                 {
171                     var iDisplayIndex = oSettings._iDisplayStart + i;
172                     var sGroup = oSettings.aoData[ oSettings.aiDisplay[iDisplayIndex] ]._aData[1];
173                     if ( sGroup != sLastGroup )
174                     {
175                         var nGroup = document.createElement( 'tr' );
176                         var nCell = document.createElement( 'td' );
177                         nCell.colSpan = iColspan;
178                         nCell.className = "group";
179                         nCell.innerHTML = sGroup;
180                         nGroup.appendChild( nCell );
181                         nTrs[i].parentNode.insertBefore( nGroup, nTrs[i] );
182                         sLastGroup = sGroup;
183                     }
184                 }
185             },
186             "footerCallback": function ( row, data, start, end, display ) {
187                 var api = this.api(), data;
188                 footer_column_sum( api, [ 4, 6, 8, 10 ], 2 );
189             },
190             "aoColumnDefs": [
191                 { "bVisible": false, "aTargets": [ 0, 1 ] },
192                 { "bSortable": false, "aTargets": ["_all"] }
193             ],
194             'bSort': true,
195             'aaSortingFixed': [[ 1, 'asc' ]],
196             'bPaginate': false,
197             "bAutoWidth": false
198         }));
199
200         $(oTable).treetable({
201             expandable: true
202         });
203         $(oTable).treetable('expandAll');
204         $("#expand_all").click(function(e){
205             e.preventDefault();
206             $(oTable).treetable('expandAll');
207         });
208         $("#collapse_all").click(function(e){
209             e.preventDefault();
210             $(oTable).treetable('collapseAll');
211         });
212
213         [% UNLESS budget_period_id %]
214           $("#hide_inactive").click(function(e){
215             e.preventDefault();
216             oTable.fnFilter( 1, 0 ); // Show only active=1
217           });
218           $("#show_inactive").click(function(e){
219             e.preventDefault();
220             oTable.fnFilter( '', 0 );
221           });
222           $("#hide_inactive").click();
223         [% END %]
224         oTable.fnAddFilters("filter", 750);
225
226         $("#filterbutton").click(function() {
227             $("#fundfilters").slideToggle(0);
228         });
229
230         $(".deletefund-disabled").on("click", function(e){
231             e.preventDefault();
232             alert("This fund has children. It cannot be deleted.");
233         });
234     });
235 //]]>
236 </script>
237 [% END %]
238
239 </head>
240 <body id="admin_aqbudgets" class="admin">
241 [% INCLUDE 'header.inc' %]
242 [% INCLUDE 'budgets-admin-search.inc' %]
243
244 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
245     <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo; <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a> &rsaquo; [% IF op == 'list' %][% IF budget_period_id %]Funds for '[% budget_period_description %]'[% ELSE %]All funds[% END %][% END %]
246     [% IF op == 'add_form' %]
247       <a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% budget_period_id %]">Funds</a> &rsaquo; [% IF ( budget_id ) %]Modify fund[% IF ( budget_name ) %] '[% budget_name %]'[% END %][% ELSE %]Add fund[% END %]
248     [% END %]
249     [% IF op == 'delete_confirm' %]
250       <a href="/cgi-bin/koha/admin/aqbudgets.pl">Funds</a> &rsaquo; Delete fund?
251     [% END %]
252 </div>
253
254 <div id="doc3" class="yui-t2">
255 <div id="bd">
256 <div id="yui-main">
257 <div class="yui-b" id="content">
258
259
260 [% UNLESS op == 'delete_confirm' %][% INCLUDE 'budgets-admin-toolbar.inc' %][% END %]
261
262 [% IF (error_not_authorised_to_modify) %]
263     <div class="error">
264         <p>You are not authorized to modify this fund</p>
265     </div>
266 [% END %]
267
268 [% IF op == 'list' %]
269
270 <h1>
271   [% IF budget_period_id %]
272     Funds for '[% budget_period_description %]'
273   [% ELSE %]
274     All funds
275   [% END %]
276 </h1>
277
278 [% INCLUDE 'budgets-active-currency.inc' %]
279
280 [% IF budgets %]
281
282 <table id="budgeth" class="group">
283     [% UNLESS budget_period_id %]
284       <caption>
285         <span class="actions"><a href="#" id="expand_all">Expand all</a>
286         | <a href="#" id="collapse_all">Collapse all</a>
287         | <a href="#" id="hide_inactive">Hide inactive budgets</a>
288         | <a href="#" id="show_inactive">Show inactive budgets</a></span>
289       </caption>
290     [% END %]
291     <thead>
292         <tr>
293             <th>Active</th>
294             <th>Budget period description</th>
295             <th>Fund code</th>
296             <th>Fund name</th>
297             <th>Base-level allocated</th>
298             <th>Base-level ordered</th>
299             <th>Total ordered</th>
300             <th>Base-level spent</th>
301             <th>Total spent</th>
302             <th>Base-level available</th>
303             <th>Total available</th>
304             <th>Actions</th>
305         </tr>
306     </thead>
307     <tfoot>
308     <tr>
309     <th></th>
310     <th></th>
311     <th colspan="2" style="text-align: left;" nowrap="nowrap">Period allocated [% IF budget_period_total %][% budget_period_total | $Price %][% END %]  </th>
312     <th nowrap="nowrap" class="data"> [% period_alloc_total | $Price %]</th>
313     <th></th>
314     <th class="data">[% ordered_total | $Price %]</th>
315     <th></th>
316     <th class="data">[% spent_total | $Price %]</th>
317     <th></th>
318     <th class="data">[% available_total | $Price %]</th>
319     <th></th>
320     </tr>
321     </tfoot>
322     <tbody>
323     [% FOREACH budget IN budgets %]
324     [% IF budget.budget_parent_id %]
325       <tr data-tt-id="[% budget.budget_id %]" data-tt-parent-id="[% budget.budget_parent_id %]">
326     [% ELSE %]
327       <tr data-tt-id="[% budget.budget_id %]">
328     [% END %]
329     <td>[% budget.budget_period_active %]</td>
330     <td>Budget [% budget.budget_period_description %] [id=[% budget.budget_period_id %]][% UNLESS budget.budget_period_active %] (inactive)[% END %]</td>
331     <td>[% budget.budget_code %]</td>
332     <td>[% budget.budget_name %]</td>
333     <td class="data">
334       [% IF budget.budget_parent_id %]
335         <span class="child_fund_amount">[% budget.budget_amount | $Price %]</span>
336       [% ELSE %]
337         <span class="total_amount">[% budget.budget_amount | $Price %]</span>
338       [% END %]
339     </td>
340     <td class="data">
341       [% IF budget.budget_parent_id %]
342         <span class="child_fund_amount">[% budget.budget_ordered | $Price %]</span>
343       [% ELSE %]
344         <span class="total_amount">[% budget.budget_ordered | $Price %]</span>
345       [% END %]
346     </td>
347     <td class="data">
348       [% IF budget.budget_parent_id %]
349         <span class="child_fund_amount">[% budget.total_ordered | $Price %]</span>
350       [% ELSE %]
351         <span class="total_amount">[% budget.total_ordered | $Price %]</span>
352       [% END %]
353     </td>
354     <td class="data">
355       [% IF budget.budget_parent_id %]
356         <span class="child_fund_amount">[% budget.budget_spent | $Price %]</span>
357       [% ELSE %]
358         <span class="total_amount">[% budget.budget_spent | $Price %]</span>
359       [% END %]
360     </td>
361     <td class="data">
362       [% IF budget.budget_parent_id %]
363         <span class="child_fund_amount">[% budget.total_spent | $Price %]</span>
364       [% ELSE %]
365         <span class="total_amount">[% budget.total_spent | $Price %]</span>
366       [% END %]
367     </td>
368
369
370     [% BLOCK colorcellvalue %]
371         [% IF parent %]
372             [% IF (value > 0) %]
373                 <span class="child_fund_amount" style="color: green;">
374             [% ELSIF (value < 0) %]
375                 <span class="child_fund_amount" style="color: red;">
376             [% ELSE %]
377                 <span class="child_fund_amount">
378             [% END %]
379          [% ELSE %]
380             [% IF (value > 0) %]
381                 <span class="total_amount" style="color: green;">
382             [% ELSIF (value < 0) %]
383                 <span class="total_amount" style="color: red;">
384             [% ELSE %]
385                 <span class="totalamount">
386             [% END %]
387         [% END %]
388             [% value | $Price %]
389         </span>
390     [% END %]
391     <td class="data">
392         [% INCLUDE colorcellvalue value=budget.budget_remaining parent=budget.budget_parent_id %]
393     </td>
394     <td class="data">
395         [% INCLUDE colorcellvalue value=budget.total_remaining parent=budget.budget_parent_id %]
396     </td>
397     [% IF ( budget.budget_lock ) %]
398         <td> <span></span> </td>
399     [% ELSE %]
400         <td>
401             <div class="dropdown dropup">
402                 <a class="btn btn-mini dropdown-toggle" id="budgetactions[% budget.budget_id %]_[% budget.budget_period_id %]" role="button" data-toggle="dropdown" href="#">
403                    Actions <b class="caret"></b>
404                 </a>
405                 <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="budgetactions[% budget.budget_id %]_[% budget.budget_period_id %]">
406                     <li><a href="/cgi-bin/koha/admin/aqbudgets.pl?op=add_form&amp;budget_id=[% budget.budget_id %]&amp;budget_period_id=[% budget.budget_period_id %]" >Edit</a></li>
407                     [% IF budget.budget_has_children %]
408                         <li class="disabled"><a href="#" class="deletefund-disabled" data-toggle="tooltip" data-placement="left" title="This fund has children">Delete</a></li>
409                     [% ELSE %]
410                         <li><a href="/cgi-bin/koha/admin/aqbudgets.pl?op=delete_confirm&amp;budget_id=[% budget.budget_id %]&amp;budget_period_id=[% budget.budget_period_id %]">Delete</a></li>
411                     [% END %]
412                     <li><a href="/cgi-bin/koha/admin/aqbudgets.pl?op=add_form&amp;budget_parent_id=[% budget.budget_id %]&amp;budget_period_id=[% budget.budget_period_id %]">Add child fund</a></li>
413                 </ul>
414             </div>
415         </td>
416     [% END %]
417     </tr>
418     [% END %]
419     </tbody>
420 </table>
421
422 [% ELSE %]
423     <p>No fund found</p>
424 [% END %]
425
426 [% END %] <!-- list -->
427
428 <!-- ********************************************************************************************** -->
429 <!-- create add/mod entry form -->
430 [% IF op == 'add_form' && !error_not_authorised_to_modify %]
431 <form action="/cgi-bin/koha/admin/aqbudgets.pl" name="Aform" method="post">
432     <fieldset class="rows">
433     <legend>[% IF ( budget_id ) %]Modify[% ELSE %]Add[% END %] Fund
434     [% IF ( budget_period_description ) %]
435         [% budget_name %] for Budget '[% budget_period_description %]'
436     [% END %]
437     </legend>
438
439     <input type="hidden" name="op" value="add_validate" />
440     <input type="hidden" name="checked" value="0" />
441     <ol>
442     [% IF ( budget_parent_id ) %]
443     <li>
444         <span class="label">Fund parent: </span>
445         [% budget_parent_name %]
446         [% budget_parent_id %] - [% budget_parent_name %]
447         <input type="hidden" name="budget_parent_id" value="[% budget_parent_id %]" />
448     </li>
449     [% END %]
450     <li>
451     <label class="required"  for="budget_code">Fund code: </label>
452     <input type="text" name="budget_code" id="budget_code" value="[% budget_code %]" size="30" />
453     </li>
454
455     <li>
456     <label class="required" for="budget_name">Fund name: </label>
457     <input type="text" name="budget_name" id="budget_name" value="[% budget_name %]" size="60" />
458     </li>
459
460     <li>
461     <label style="white-space: nowrap;" for="budget_amount" class="required">Amount: </label>
462     <input type="text" name="budget_amount" id="budget_amount" value="[% budget_amount | $Price on_editing => 1 %]" size="8" />
463     </li>
464
465     <li>
466       <label for="budget_encumb">Warning at (%): </label>
467       <input type="text" name="budget_encumb" id="budget_encumb" value="[% budget_encumb %]" size="10" />
468       <span class="hint">0 to disable</span>
469     </li>
470
471     <li>
472       <label for="budget_expend">Warning at (amount): </label>
473       <input type="text" name="budget_expend" id="budget_expend" value="[% budget_expend | $Price on_editing => 1 %]" size="10" />
474       <span class="hint">0 to disable</span>
475     </li>
476
477     <li>
478         <span class="label">Owner: </span>
479         <span  id="budget_owner_name">
480         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% budget_owner_id %]">
481             [% budget_owner_name %]
482         </a>
483         </span>
484         <input type="hidden" name="budget_owner_id" id="budget_owner_id"
485             value="[% budget_owner_id %]" />
486
487         <input type="button" id="edit_owner" value="Edit owner"
488             onclick="ownerPopup(); return false;" />
489         <input type="button" id="remove_owner" value="Remove owner"
490             onclick="ownerRemove(); return false;" />
491     </li>
492
493     [% IF budget_has_children %]
494         <li class="radio">
495             <label>
496                 <input type="checkbox" id="set_owner_to_children" name="set_owner_to_children" value="1" />
497                 Update all child funds with this owner
498             </label>
499             <span class="hint">Selecting this option will overwrite existing fund owners, if any</span>
500         </li>
501     [% END %]
502
503     <li>
504         <span class="label">Users:</span>
505         <ul style="float:left;" id="budget_users">
506             [% FOREACH user IN budget_users %]
507                 <li id="user_[% user.borrowernumber %]">
508                     <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% user.borrowernumber %]">
509                         [% user.firstname %] [% user.surname %]
510                     </a>
511                     [<a style="cursor:pointer"
512                     onclick="del_user([% user.borrowernumber %])">Remove</a>]
513                 </li>
514             [% END %]
515             <li id="add_user_button">
516                 <input type="button" onclick="userPopup()" value="Add users" />
517             </li>
518         </ul>
519         <input type="hidden" name="budget_users_ids" id="budget_users_id" value="[% budget_users_ids %]" />
520     <li>
521     <label for="budget_branchcode">Library: </label>
522     <select name="budget_branchcode" id="budget_branchcode">
523     <option value=""></option>
524     [% FOREACH branchloop_selec IN branchloop_select %]
525         [% UNLESS ( branchloop_selec.selected ) %] <option value="[% branchloop_selec.value %]" > [% ELSE %] <option value="[% branchloop_selec.value %]" selected="selected"> [% END %] [% branchloop_selec.value %]-[% branchloop_selec.branchname %]</option>
526     [% END %]
527     </select>
528     </li>
529
530     <li>
531     <label for="budget_permission">Restrict access to: </label>
532     <select name="budget_permission" id="budget_permission">
533         [% IF ( budget_perm_0 ) %]
534             <option value="0" selected="selected">
535         [% ELSE %]
536             <option value="0">
537         [% END %]
538             None
539         </option>
540
541         [% IF ( budget_perm_1 ) %]
542             <option value="1" selected="selected">
543         [% ELSE %]
544             <option value="1">
545         [% END %]
546             Owner
547         </option>
548
549         [% IF ( budget_perm_3) %]
550             <option value="3" selected="selected">
551         [% ELSE %]
552             <option value="3">
553         [% END %]
554             Owner and users
555         </option>
556
557         [% IF ( budget_perm_2 ) %]
558             <option value="2" selected="selected">
559         [% ELSE %]
560             <option value="2">
561         [% END %]
562             Owner, users and library
563         </option>
564     </select>
565     </li>
566
567     <li>
568     <label for="budget_notes">Notes: </label>
569     <textarea name="budget_notes" id="budget_notes"  cols="80" rows="6">[% budget_notes %]</textarea>
570     </li>
571
572     <li>
573     <label  style="white-space: nowrap;" for="authorised_value_category1">Statistic 1 done on: </label>
574         <select name="sort1_authcat" id="authorised_value_category1">
575             <option value=""></option>
576             [% FOREACH authorised_value_categories IN authorised_value_categories1 %]
577                 [% IF ( authorised_value_categories.selected ) %]
578                     <option value="[% authorised_value_categories.category %]" selected="selected">
579                         [% authorised_value_categories.category %]
580                     </option>
581                 [% ELSE %]
582                     <option value="[% authorised_value_categories.category %]">
583                         [% authorised_value_categories.category %]
584                     </option>
585                 [% END %]
586             [% END %]
587         </select>
588     </li>
589     <li>
590     <label  style="white-space: nowrap;" for="authorised_value_category2">Statistic 2 done on: </label>
591         <select name="sort2_authcat" id="authorised_value_category2">
592             <option value=""></option>
593             [% FOREACH authorised_value_categories IN authorised_value_categories2 %]
594                 [% IF ( authorised_value_categories.selected ) %]
595                     <option value="[% authorised_value_categories.category %]" selected="selected">
596                         [% authorised_value_categories.category %]
597                     </option>
598                 [% ELSE %]
599                     <option value="[% authorised_value_categories.category %]">
600                         [% authorised_value_categories.category %]
601                     </option>
602                 [% END %]
603             [% END %]
604         </select>
605     </li>
606     </ol>
607
608     [% IF ( budget_id ) %]
609         <input type="hidden" name="budget_id" value="[% budget_id %]" />
610     [% END %]
611     </fieldset>
612
613     <fieldset class="action">
614         <input type="submit" value="Submit" onclick="Check(this.form); return false;" /> <a class="cancel" href="/cgi-bin/koha/admin/aqbudgets.pl">Cancel</a>
615         <input type="hidden" name="budget_period_id" value="[% budget_period_id %]" />
616     </fieldset>
617 </form>
618
619 [% END %] <!-- add_form -->
620
621 [% IF op == 'delete_confirm' %]
622 <div class="dialog alert"> <h3>Delete fund [% budget_name %]?</h3>
623 If you delete this fund, all orders linked to this fund will be deleted!
624 <table>
625     <tr>
626     <th scope="row">Fund amount:</th>
627     <td>[% budget_amount | $Price %]</td>
628     </tr>
629 </table>
630
631 <form action="/cgi-bin/koha/admin/aqbudgets.pl" method="post">
632     <input type="hidden" name="op" value="delete_confirmed" />
633     <input type="hidden" name="budget_id" value="[% budget_id %]" />
634     <input type="hidden" name="budget_period_id" value="[% budget_period_id %]" />
635     <input type="submit" value="Delete" class="approve" />
636 </form>
637
638 <form action="/cgi-bin/koha/admin/aqbudgets.pl" method="get">
639     <input type="submit" class="deny" value="Cancel" />
640 </form>
641 </div>
642 [% END %]
643
644 </div>
645 </div>
646 <div class="yui-b">
647 [% IF op == 'list' %]
648   <form action="/cgi-bin/koha/admin/aqbudgets.pl" method="get">
649     <a href="#" id="filterbutton">Filters</a>
650     <fieldset class="brief" id="fundfilters">
651     <h4>Fund filters</h4>
652         <ol>
653         <li>
654             <label for="filter_budgetbranch2">Library: </label>
655             <select name="filter_budgetbranch" id="filter_budgetbranch2" style="width:10em;">
656                 <option value=""></option>
657                 [% FOREACH branchloo IN branchloop %]
658                 [% UNLESS ( branchloo.selected ) %]<option value="[% branchloo.value %]">
659                 [% ELSE %]<option value="[% branchloo.value %]" selected="selected">[% END %]
660                 [% branchloo.branchname %]</option>
661                 [% END %]
662             </select>
663         </li>
664         <li class="radio">
665
666         <label for="show_mine">Show my funds only</label>
667             [% IF ( show_mine ) %]
668                 <input type="checkbox" id="show_mine"  name="show_mine" value="1" checked="checked" />
669             [% ELSE %]
670                 <input type="checkbox" id="show_mine"  name="show_mine" value="1" />
671         [% END %]
672         </li>
673
674         [% IF periods %]
675           <li>
676             <label for="periods">Budget:</label>
677             <select id="periods" name="budget_period_id">
678               <option value="">All budgets</option>
679               [% FOR period IN periods %]
680                 [% IF budget_period_id && period.budget_period_id == budget_period_id %]
681                   <option value="[% period.budget_period_id %]" selected="selected">[% period.budget_period_description %]</option>
682                 [% ELSE %]
683                   <option value="[% period.budget_period_id %]">[% period.budget_period_description %]</option>
684                 [% END %]
685               [% END %]
686             </select>
687           </li>
688         [% END %]
689         </ol>
690
691         <input type="hidden" name="op" value="list" />
692         <input type="submit" class="submit" name="filter" value="Go" />
693     </fieldset>
694 </form>[% END %]
695 [% INCLUDE 'acquisitions-menu.inc' %]
696 </div>
697 </div>
698 [% INCLUDE 'intranet-bottom.inc' %]