Bug 20538: Remove the need of writing [% KOHA_VERSION %] everywhere
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / reports / orders_by_budget.tt
1 [% USE Asset %]
2 [% USE Price %]
3 [% SET footerjs = 1 %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>Koha &rsaquo; Reports &rsaquo; Orders by fund</title>
6 [% INCLUDE 'doc-head-close.inc' %]
7 </head>
8 <body id="rep_orders_by_budget" class="rep">
9 [% INCLUDE 'header.inc' %]
10 [% INCLUDE 'cat-search.inc' %]
11
12 [% Asset.css("css/datatables.css") %]
13 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a>[% IF ( get_orders ) %] &rsaquo; <a href="/cgi-bin/koha/reports/orders_by_fund.pl">Orders by fund</a> &rsaquo; Results[% ELSE %] &rsaquo; Orders by fund[% END %]</div>
14
15 <div id="doc3" class="yui-t2">
16
17 <div id="bd">
18         <div id="yui-main">
19         <div class="yui-b">
20
21 [% IF ( current_budget_name ) %]<h1>Orders for fund '[% current_budget_name %]'</h1>
22 [% ELSE %]<h1>Orders by fund</h1>
23 [% END %]
24
25 [% IF ( get_orders ) %]
26     <div class="results">
27         [% IF ( total ) %]
28             Orders found: [% total %]
29         [% ELSE %]
30             No order found
31         [% END %]
32     </div>
33
34     [% IF ( ordersloop ) %]<table id="funds">
35         <thead>
36         <tr>
37         <th>Fund</th>
38         <th>Basket</th>
39         <th>Basket name</th>
40         <th>Basket by</th>
41         <th>Title</th>
42         <th>Currency</th>
43         <th>List price</th>
44         <th>RRP</th>
45         <th>Budgeted cost</th>
46         <th>Quantity</th>
47         <th>Total RRP</th>
48         <th>Total cost</th>
49         <th>Entry date</th>
50         <th>Date received</th>
51         <th>Internal note</th>
52         <th>Vendor note</th>
53         </tr>
54         </thead>
55         <tbody>
56         [% FOREACH ordersloo IN ordersloop %]
57             [% UNLESS ( loop.odd ) %]<tr class="highlight">
58             [% ELSE %] <tr>
59             [% END %]
60             <td>[% ordersloo.budget_name |html %]</td>
61             <td><a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% ordersloo.basketno %]"> [% ordersloo.basketno |html %]</a></td>
62             <td>[% ordersloo.basketname |html %]</td>
63             <td>[% ordersloo.authorisedbyname %]</td>
64             <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% ordersloo.biblionumber %]"> [% ordersloo.title |html %]</a></td>
65             <td>[% ordersloo.currency %]</td>
66             <td>[% ordersloo.listprice | $Price %]</td>
67             <td>[% ordersloo.rrp | $Price %]</td>
68             <td>[% ordersloo.ecost | $Price %]</td>
69             <td>[% ordersloo.quantity %]</td>
70             <td>[% ordersloo.total_rrp | $Price %]</td>
71             <td>[% ordersloo.total_ecost | $Price %]</td>
72             <td>[% ordersloo.entrydate %]</td>
73             <td>[% ordersloo.datereceived %]</td>
74             <td>[% ordersloo.order_internalnote |html %]</td>
75             <td>[% ordersloo.order_vendornote |html %]</td>
76             </tr>
77         [% END %]
78         </tbody>
79         <tfoot><tr><th>TOTAL</th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th>[% total_quantity  %]</th><th>[% total_rrp | $Price %]</th><th>[% total_ecost | $Price %]</th><th></th><th></th><th></th><th></th></tr></tfoot>
80         </table>
81     [% END %]
82     [% ELSE %]
83         <form name="f" action="/cgi-bin/koha/reports/orders_by_fund.pl" method="post">
84         <fieldset class="rows">
85         <legend>Filters</legend>
86         <ol><li><label for="budgetfilter">Fund: </label>
87         <select name="budgetfilter" id="budgetfilter">
88             <option value="">All funds</option>
89             <option value="activebudgets">All active funds</option>
90         [% FOREACH budgetsloo IN budgetsloop %]
91             [% IF ( budgetsloo.selected ) %]
92                 <option value="[% budgetsloo.value %]" selected="selected">
93             [% ELSE %]
94                 [% bdgclass=budgetsloo.active? "": "b_inactive" %]
95                     <option class="[% bdgclass %]" value="[% budgetsloo.value %]">
96             [% END %]
97             [% budgetsloo.description %] [% IF !budgetsloo.active %](inactive)[% END %]
98             </option>
99         [% END %]
100         </select>
101         <label for="showallbudgets" style="float:none;">&nbsp;Show inactive:</label>
102         <input type="checkbox" id="showbudgets" />
103         </li></ol>
104         </fieldset>
105
106         <fieldset class="rows">
107         <legend>Output</legend>
108         <ol><li><label for="outputscreen">To screen into the browser: </label><input type="radio" checked="checked" name="output" id="outputscreen" value="screen" /> </li>
109             <li><label for="outputfile">To a file:</label>
110                 <input type="radio" name="output" value="file" id="outputfile" />
111                 <label class="inline" for="basename">Named: </label>
112                 <input type="text" name="basename" id="basename" value="Export" />
113                 <label class="inline" for="MIME">Into an application </label>
114                 <select id='MIME' name='MIME' size='1'>
115                 [% FOREACH outputFormatloo IN outputFormatloop %]
116                     <option value="[% outputFormatloo %]">[% outputFormatloo %]</option>
117                 [% END %]
118                 </select>
119                 <select id='sep' name='sep' size='1'>
120                 [% FOREACH delimiterloo IN delimiterloop %]
121                     [% IF delimiterloo == delimiterPreference %]
122                         <option value="[% delimiterloo %]">[% delimiterloo %]</option>
123                     [% END %]
124                 [% END %]
125                 [% FOREACH delimiterloo IN delimiterloop %]
126                     [% IF delimiterloo != delimiterPreference %]
127                         <option value="[% delimiterloo %]">[% delimiterloo %]</option>
128                     [% END %]
129                 [% END %]
130                 </select>
131         </li></ol>
132         </fieldset>
133
134         <fieldset class="action">
135         <input type="submit" value="Submit" />
136         <input type="hidden" name="get_orders" value="1" /></fieldset>
137         </form>
138
139     [% END %]
140
141 </div>
142 </div>
143 <div class="yui-b">
144 [% INCLUDE 'reports-menu.inc' %]
145 </div>
146 </div>
147
148 [% MACRO jsinclude BLOCK %]
149     [% INCLUDE 'datatables.inc' %]
150     <script type="text/javascript">
151         $(document).ready( function () {
152             $('#funds').DataTable($.extend(true, {}, dataTablesDefaults,{"sPaginationType": "full_numbers"}));
153
154             showallbudgets = $('#budgetfilter').html();
155             $('#budgetfilter .b_inactive').remove();
156
157             $('#showbudgets').click(function(){
158                 if ($(this).is(":checked")) {
159                     $('#budgetfilter').html(showallbudgets);
160                 } else {
161                     $('#budgetfilter .b_inactive').remove();
162                 }
163             });
164         } );
165     </script>
166
167 [% END %]
168
169 [% INCLUDE 'intranet-bottom.inc' %]