Bug 26988: Add API route to fetch hold pickup locations and use it in the holds table
[koha.git] / koha-tmpl / intranet-tmpl / prog / js / funds_sorts.js
1 /* getAuthValueDropbox from js/acq.js is needed */
2 $(document).ready(function() {
3     // keep copy of the inactive budgets
4     disabledBudgetsCopy = $("select[name='all_budget_id']").html();
5     $("select[name='all_budget_id'] .b_inactive").remove();
6     $("select[name='budget_id'] .b_inactive").remove();
7
8     $("#showallbudgets").click(function() {
9         if ($(this).is(":checked")) {
10             $("select[name='budget_id']").html(disabledBudgetsCopy)
11         }
12         else {
13             $("select[name='budget_id'] .b_inactive").remove();
14         }
15     });
16
17     $("#all_showallbudgets").click(function() {
18         if ($(this).is(":checked")) {
19             $("select[name='all_budget_id']").html(disabledBudgetsCopy);
20         }
21         else {
22             $("select[name='all_budget_id'] .b_inactive").remove();
23         }
24     });
25
26     $("select[name='budget_id']").change(function(){
27         var sort1_authcat = $(this).find("option:selected").attr('data-sort1-authcat');
28         var sort2_authcat = $(this).find("option:selected").attr('data-sort2-authcat');
29         var destination_sort1 = $(this).parents('fieldset').find('li.sort1').find('input[name="sort1"]');
30         var sort1 = $(destination_sort1).val() || "";
31         if ( destination_sort1.length < 1 ) {
32             destination_sort1 = $(this).parents('fieldset').find('li.sort1 > select[name="sort1"]');
33         }
34         var destination_sort2 = $(this).parents('fieldset').find('li.sort2').find('input[name="sort2"]');
35         var sort2 = $(destination_sort2).val() || "";
36         if ( destination_sort2.length < 1 ) {
37             destination_sort2 = $(this).parents('fieldset').find('li.sort2').find('select[name="sort2"]');
38         }
39         getAuthValueDropbox( 'sort1', sort1_authcat, destination_sort1, sort1 );
40
41         getAuthValueDropbox( 'sort2', sort2_authcat, destination_sort2, sort2 );
42     } );
43
44     $("select[name='budget_id']").change();
45
46     $("select[name='all_budget_id']").change(function(){
47         var sort1_authcat = $(this).find("option:selected").attr('data-sort1-authcat');
48         var sort2_authcat = $(this).find("option:selected").attr('data-sort2-authcat');
49         var destination_sort1 = $(this).parent().siblings('li').find('input[name="all_sort1"]');
50         if ( destination_sort1.length < 1 ) {
51             destination_sort1 = $(this).parent().siblings('li').find('select[name="all_sort1"]');
52         }
53         var destination_sort2 = $(this).parent().siblings('li').find('input[name="all_sort2"]');
54         if ( destination_sort2.length < 1 ) {
55             destination_sort2 = $(this).parent().siblings('li').find('select[name="all_sort2"]');
56         }
57         getAuthValueDropbox( 'sort1', sort1_authcat, destination_sort1 );
58         getAuthValueDropbox( 'sort2', sort2_authcat, destination_sort2 );
59         $(this).parent().siblings('li').find('select[name="sort1"]').attr('name', 'all_sort1');
60         $(this).parent().siblings('li').find('input[name="sort1"]').attr('name', 'all_sort1');
61         $(this).parent().siblings('li').find('select[name="sort2"]').attr('name', 'all_sort2');
62         $(this).parent().siblings('li').find('input[name="sort2"]').attr('name', 'all_sort2');
63     } );
64
65     $("select[name='all_budget_id']").change();
66
67 });