Bug 13619: Acq home: ensure 'manage suggestions' goes to pending suggestions
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / acqui-home.tt
1 [% USE Price %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Acquisitions</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
6 [% INCLUDE 'datatables.inc' %]
7 <link href="[% interface %]/lib/jquery/plugins/treetable/stylesheets/jquery.treetable.css" rel="stylesheet" type="text/css" />
8 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/treetable/jquery.treetable.js"></script>
9
10 <script type="text/javascript">
11 //<![CDATA[
12
13 dt_overwrite_html_sorting_localeCompare();
14
15 $(document).ready(function() {
16
17     var oTable = $("#accounts").dataTable($.extend(true, {}, dataTablesDefaults, {
18         "fnDrawCallback": function ( oSettings ) {
19             if ( oSettings.aiDisplay.length == 0 )
20             {
21                 return;
22             }
23
24             var nTrs = $('#accounts tbody tr');
25             var iColspan = nTrs[0].getElementsByTagName('td').length;
26             var sLastGroup = "";
27             for ( var i=0 ; i<nTrs.length ; i++ )
28             {
29                 var iDisplayIndex = oSettings._iDisplayStart + i;
30                 var sGroup = oSettings.aoData[ oSettings.aiDisplay[iDisplayIndex] ]._aData[1];
31                 if ( sGroup != sLastGroup )
32                 {
33                     var nGroup = document.createElement( 'tr' );
34                     var nCell = document.createElement( 'td' );
35                     nCell.colSpan = iColspan;
36                     nCell.className = "group";
37                     nCell.innerHTML = sGroup;
38                     nGroup.appendChild( nCell );
39                     nTrs[i].parentNode.insertBefore( nGroup, nTrs[i] );
40                     sLastGroup = sGroup;
41                 }
42             }
43         },
44         "footerCallback": function ( row, data, start, end, display ) {
45             var api = this.api(), data;
46             footer_column_sum( api, [ 6, 7, 8, 9 ] );
47         },
48         "aoColumnDefs": [
49             { "bVisible": false, "aTargets": [ 0, 1 ] },
50             { "bSortable": false, "aTargets": ["_all"] }
51         ],
52         'bSort': true,
53         'aaSortingFixed': [[ 1, 'asc' ]],
54         'bPaginate': false,
55         "bAutoWidth": false
56     }));
57
58     $(oTable).treetable({
59         expandable: true
60     });
61     $(oTable).treetable('expandAll');
62     $("#expand_all").click(function(e){
63         e.preventDefault();
64         $(oTable).treetable('expandAll');
65     });
66     $("#collapse_all").click(function(e){
67         e.preventDefault();
68         $(oTable).treetable('collapseAll');
69     });
70
71     $("#hide_inactive").click(function(e){
72         e.preventDefault();
73         oTable.fnFilter( 1, 0 ); // Show only active=1
74     });
75     $("#show_inactive").click(function(e){
76         e.preventDefault();
77         oTable.fnFilter( '', 0 );
78     });
79     $("#hide_inactive").click();
80
81 });
82 //]]>
83 </script>
84
85 </head>
86 <body id="acq_acqui-home" class="acq">
87 [% INCLUDE 'header.inc' %]
88 [% INCLUDE 'acquisitions-search.inc' %]
89
90 <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; </div>
91
92 <div id="doc3" class="yui-t2">
93
94 <div id="bd">
95     <div id="yui-main">
96     <div class="yui-b">
97
98 [% INCLUDE 'acquisitions-toolbar.inc' %]
99
100 <h1>Acquisitions</h1>
101     [% UNLESS ( loop_budget ) %]
102         [% IF ( CAN_user_acquisition_period_manage ) %]
103         <div class="dialog alert">You must <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">define a budget</a> in Administration</div>
104         [% ELSE %]
105         <div class="dialog alert">Your administrator must define a budget in Administration</div>
106         [% END %]
107     [% END %]
108 <div class="yui-g">
109 <div class="yui-u first">
110 <div id="acqui_acqui_home_order">
111     <fieldset>
112         <legend>Manage orders</legend>
113         <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
114             <p><label for="supplierpage">Vendor: </label><input type="text" size="25" name="supplier" id="supplierpage" class="focus" />
115             <input type="submit" value="Search" />
116             </p>
117         </form>
118     </fieldset>
119 </div>
120 </div>
121
122 [% IF ( suggestion && suggestions_count ) %]
123 <div class="yui-u">
124     <div id="acqui_acqui_home_suggestions">
125         <fieldset>
126         <legend>Pending suggestions</legend>
127             <p>[% suggestions_count %] suggestions waiting. <a href="/cgi-bin/koha/suggestion/suggestion.pl#ASKED">Manage suggestions</a>.</p>
128         </fieldset>
129     </div>
130 </div>
131 [% END %]
132
133 </div>
134
135 [% IF ( loop_budget ) %]
136
137             <h3>All available funds[% IF ( branchname ) %] for [% branchname %][% END %]</h3>
138
139     <div id="BudgetsAndFunds">
140     <table id="accounts">
141         <caption>
142           <span class="actions"><a href="#" id="expand_all">Expand all</a>
143           | <a href="#" id="collapse_all">Collapse all</a>
144           | <a href="#" id="hide_inactive">Hide inactive budgets</a>
145           | <a href="#" id="show_inactive">Show inactive budgets</a></span>
146         </caption>
147
148         <thead>
149         <tr>
150             <th>Active</th>
151             <th>Budget period description</th>
152             <th>Fund code</th>
153             <th>Fund name</th>
154             <th>Owner</th>
155             <th>Library</th>
156             <th>Amount</th>
157             <th>Ordered</th>
158             <th>Spent</th>
159             <th>Total available</th>
160         </tr>
161         </thead>
162         <tfoot id="funds_total">
163         <tr>
164             <th></th>
165             <th></th>
166             <th colspan="4">Total</th>
167             <th class="data"></th>
168             <th class="data"></th>
169             <th class="data"></th>
170             <th class="data"></th>
171         </tr>
172         </tfoot>
173         <tbody>
174         [% FOREACH loop_budge IN loop_budget %]
175             [% IF loop_budge.budget_parent_id %]
176                 <tr data-tt-id="[% loop_budge.budget_id %]" data-tt-parent-id="[% loop_budge.budget_parent_id %]">
177             [% ELSE %]
178                 <tr data-tt-id="[% loop_budge.budget_id %]">
179             [% END %]
180
181                 <td>[% loop_budge.budget_period_active %]</td>
182                 <td>Budget [% loop_budge.budget_period_description %] [id=[% loop_budge.budget_period_id %]][% UNLESS loop_budge.budget_period_active %] (inactive)[% END %]</td>
183                 <td>
184                     [% IF ( CAN_user_acquisition_budget_manage ) %]
185                         <a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% loop_budge.budget_period_id %]">[% loop_budge.budget_code %]</a>
186                     [% ELSE %]
187                         [% loop_budge.budget_code %]
188                     [% END %]
189                 </td>
190                 <td>[% loop_budge.budget_name %]</td>
191                 <td>[% IF ( loop_budge.budget_owner_borrowernumber ) %]
192                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loop_budge.budget_owner_borrowernumber %]">[% loop_budge.budget_owner_surname %], [% loop_budge.budget_owner_firstname %]</a>
193                     [% ELSE %]
194                         &nbsp;
195                     [% END %]
196                 </td>
197                 <td>[% loop_budge.budget_branchname %]</td>
198                 <td class="data">
199                     [% IF loop_budge.budget_parent_id %]
200                         [% loop_budge.budget_amount | $Price %]
201                     [% ELSE %]
202                         <span class="total_amount">[% loop_budge.budget_amount | $Price %]</span>
203                     [% END %]
204                 </td>
205                 <td class="data">
206                     <a href="ordered.pl?fund=[% loop_budge.budget_id %]&amp;fund_code=[% loop_budge.budget_code %]">
207                     [% IF loop_budge.budget_parent_id %]
208                         [% loop_budge.budget_ordered | $Price %]
209                     [% ELSE %]
210                         <span class="total_amount">[% loop_budge.budget_ordered | $Price %]</span>
211                     [% END %]
212                     </a>
213                 </td>
214                 <td class="data">
215                     <a href="spent.pl?fund=[% loop_budge.budget_id %]&amp;fund_code=[% loop_budge.budget_code %]">
216                     [% IF loop_budge.budget_parent_id %]
217                         [% loop_budge.budget_spent | $Price %]
218                     [% ELSE %]
219                         <span class="total_amount">[% loop_budge.budget_spent | $Price %]</span>
220                     [% END %]
221                     </a>
222                 </td>
223                 <td class="data">
224                     [% IF loop_budge.budget_parent_id %]
225                         [% loop_budge.budget_avail | $Price %]
226                     [% ELSE %]
227                         <span class="total_amount">[% loop_budge.budget_avail | $Price %]</span>
228                     [% END %]
229                 </td>
230             </tr>
231         [% END %]
232         </tbody>
233     </table>
234     </div>
235     [% END %]
236
237 </div>
238 </div>
239 <div class="yui-b">
240 [% INCLUDE 'acquisitions-menu.inc' %]
241 </div>
242 </div>
243 [% INCLUDE 'intranet-bottom.inc' %]