[MT2343] Display branchcodes instead of branchnames in columns
[koha_gimpoz] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / aqplan.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>
3 Budget planning
4 </title>
5 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
6 <!-- TMPL_INCLUDE NAME="calendar.inc" -->
7 <link href="<!-- TMPL_VAR NAME="yuipath" -->/reset/reset.css" rel="stylesheet" type="text/css" />
8 <link href="<!-- TMPL_VAR NAME="yuipath" -->/fonts/fonts.css" rel="stylesheet" type="text/css" />
9 <link href="<!-- TMPL_VAR NAME="yuipath" -->/menu/assets/menu.css" rel="stylesheet" type="text/css" />
10 <link href="<!-- TMPL_VAR NAME="yuipath" -->/container/assets/skins/sam/container.css"  rel="stylesheet" type="text/css" />
11
12 </head>
13 <body>
14 <!-- TMPL_INCLUDE NAME="header.inc" -->
15 <!-- TMPL_INCLUDE NAME="budgets-admin-search.inc" -->
16
17 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/yahoo/yahoo.js" type="text/javascript"></script>
18 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/event/event.js" type="text/javascript"></script>
19 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/dom/dom.js" type="text/javascript"></script>
20 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/menu/menu.js" type="text/javascript"></script>
21 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/container/menu.js" type="text/javascript"></script>
22 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/yahoo-dom-event/yahoo-dom-event.js"  type="text/javascript"></script>
23
24
25 <script type="text/javascript" src="<!-- TMPL_VAR NAME='themelang' -->/js/acq.js"></script>
26 <script type="text/javascript">
27 // ---------------------------------------------------------------------
28 // Javascript
29 // ---------------------------------------------------------------------
30     function Check(f) {
31             var ok=1;
32             var _alertString="";
33             var alertString2;
34             var arr = document.getElementsByName('est_total')
35
36             for ( var i=0, len=arr.length; i<len; ++i ){
37                     var tot = arr[i].innerHTML;
38
39                     if (tot == 'NaN') {
40                         _alertString += "\n- " + _("One or more cell values is non-numeric");
41                     }
42             }
43
44             if (_alertString.length==0) {
45
46                 var op  = document.createElement('input');
47                 op.setAttribute("type","hidden");
48                 op.setAttribute("name","op");
49                 op.setAttribute("value","save");   //ohh the pain...
50
51                 document.Aform.appendChild(op);
52                 document.Aform.submit()
53
54             } else {
55                     alertString2  = _("Form not submitted because of the following problem(s)");
56                     alertString2 += "\n------------------------------------------------------------------------------------\n";
57                     alertString2 += _alertString;
58                     alert(alertString2);
59             }
60     }
61
62
63 YAHOO.util.Event.onAvailable("popmenu", function () {
64
65     var itemData  = new Array();
66     table = document.getElementById('plan') 
67     tableTmp =  table.cloneNode(true); 
68     tableTmp.id = 'planTmp';
69
70     <!-- TMPL_LOOP NAME="authvals_row" -->
71         itemData.push( {   text: "<!-- TMPL_VAR NAME="val" -->",  onclick: { fn: addColumn, obj:  ["<!-- TMPL_VAR NAME="colnum" -->",  "<!-- TMPL_VAR NAME="code" -->"]    }    }     );
72
73     <!-- /TMPL_LOOP -->
74     oMenu = new YAHOO.widget.Menu("basicmenu",
75             {  position: "dynamic", itemdata: itemData , clicktohide  : "true" , context:["popmenu","tl","tr"] }
76     );
77
78    oMenu.render("popmenu");
79    YAHOO.util.Event.addListener("add_popmenu_item", "click", oMenu.show, null, oMenu);
80
81 // oMenu.removeItem(2);   // TODO.....
82
83 });
84
85 </script>
86
87
88
89 <div id="breadcrumbs">
90     <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
91     <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo;
92     <a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=<!-- TMPL_VAR NAME="budget_period_id" -->">Budgets</a> &rsaquo;
93     <a href="/cgi-bin/koha/admin/aqplan.pl?budget_period_id=<!-- TMPL_VAR NAME="budget_period_id" -->">Planning</a> &rsaquo;
94 </div>
95
96 <div id="doc3" class="yui-t2">
97 <div id="bd">
98 <div id="yui-main">
99 <div class="yui-b">
100
101
102 <!-- TMPL_INCLUDE NAME="budgets-admin.inc" -->
103
104 <br />
105
106 <form method="post" id='Aform' name="Aform"  action="/cgi-bin/koha/admin/aqplan.pl">
107
108 <fieldset style=" border:2px solid #EEEEEE; " >
109 <legend>Planning for <!-- TMPL_VAR NAME="budget_period_description" --> by <!-- TMPL_VAR NAME="authcat" --></legend>
110     <table class="invis" >
111     <tr><td>
112     <!-- TMPL_IF NAME="show_mine" -->
113         <input type="checkbox" id="show_mine"  name="show_mine" value="1" checked="checked" />
114     <!-- TMPL_ELSE -->
115         <input type="checkbox" id="show_mine"  name="show_mine" value="1"  />
116     <!-- /TMPL_IF -->
117     <label for="show_mine">Show my budgets only</label>
118     </td><td>
119
120      <label for="budget_period_dropbox">Select budget period:</label>
121      <!-- TMPL_VAR name="budget_period_dropbox" -->
122     </td></tr>
123
124     <tr><td>
125     <!-- TMPL_IF NAME="show_active" -->
126         <input type="checkbox" id="show_active" name="show_active" value="1" checked="checked" />
127     <!-- TMPL_ELSE -->
128         <input type="checkbox" id="show_active" name="show_active" value="1" />
129         <!-- /TMPL_IF -->
130     <label for="show_active">Show active budgets only</label>
131     </td><td>
132
133     <label for="authcat_dropbox"  > Select planning type:</label>
134     <!-- TMPL_VAR NAME="authcat_dropbox" -->
135     </td></tr>
136
137     <!-- TMPL_UNLESS  name="budget_period_locked" -->
138     <tr><td>
139         <!-- TMPL_IF NAME="show_actual" -->
140             <input type="checkbox"    id="show_actual"   name="show_actual" value="1"   checked="checked" />
141         <!-- TMPL_ELSE -->
142             <input type="checkbox" id="show_actual" name="show_actual" value="1"  />
143         <!-- /TMPL_IF -->
144         <label for="show_actual">Show actual/estimated values:</label>
145     </td>
146
147     <td align="right">
148      <input type="submit" name="option_submit" value="Select" />
149     </td>
150     </tr>
151     <!-- /TMPL_UNLESS -->
152     </table>
153 </fieldset>
154
155 <br />
156
157 <!-- Budget Lines -->
158
159     <!-- TMPL_IF NAME="budget_lines" -->
160
161     <table id="plan" width="100%">
162     <thead>
163     <tr>
164     <th>Budget name</th>
165     <th>Budget total</th>
166
167     <!-- TMPL_LOOP NAME="authvals_row" -->
168          <!-- TMPL_IF NAME="display" -->
169             <th id="<!-- TMPL_VAR NAME="code" -->"   style="text-align: center;"
170                         class="<!-- TMPL_VAR NAME='colnum' -->" >
171         <!-- TMPL_ELSE -->
172             <th id="<!-- TMPL_VAR NAME="code" -->"   style="text-align: center;
173                             display:none;" 
174                         class="<!-- TMPL_VAR NAME='colnum' -->" >
175         <!-- /TMPL_IF -->
176
177     <!-- TMPL_VAR NAME="code" -->&nbsp;<span class="buttonPlus" onclick="delColumn('<!-- TMPL_VAR NAME="colnum" -->', '<!-- TMPL_VAR NAME="code" -->')"  > - &nbsp;</span></th>
178
179     <!-- /TMPL_LOOP -->
180
181     <th >Budget remaining    </th>
182
183     <th id='popmenu' style=" text-align: center;" >
184     <span id="add_popmenu_item"    class="buttonPlus" > + </span></th>
185     </tr>
186     </thead>
187
188     <tbody>
189     <!-- TMPL_LOOP NAME="budget_lines" -->
190             <!-- TMPL_IF Name="budget_lock" -->
191         <tr  class="highlight"  > 
192             <!--TMPL_ELSE -->
193         <tr > 
194             <!--/TMPL_IF -->
195
196         <td align='left'><!-- TMPL_VAR NAME="budget_name_indent"--></td>
197         <td align='right'><span id='budget_tot_formatted" -->'><!-- TMPL_VAR NAME="budget_amount_formatted"-->&nbsp;</span>
198
199         <!-- NEXT DIV ELEMENT IS USED BY JS FOR CALC-ING AUTO-FILL AND ESTIMATED AMOUNTS -->
200         <div style="display:none;" id='budget_tot_<!-- TMPL_VAR NAME="budget_id" -->'><!-- TMPL_VAR NAME="budget_amount"--></div></td>
201
202         <!-- TMPL_LOOP NAME="lines"     -->
203             <td 
204             <!-- TMPL_UNLESS Name="display" --> style="display:none;"<!-- /TMPL_UNLESS -->
205                     class="<!-- TMPL_VAR NAME="colnum"-->"  >  
206             <table class="invis" width="100%">
207                 <tr>
208                     <!-- TMPL_IF Name="show_actual" -->
209                         <td   width="50%"  align="right" ><!-- TMPL_VAR NAME="actual_amount" --></td>
210                     <!--/TMPL_IF -->
211                 <td align="right">
212
213                 <!--TMPL_IF  Name="budget_lock" -->
214                     <!-- TMPL_VAR NAME="estimated_amount" -->&nbsp;
215                     <input type="hidden" style="text-align: right;"  name='<!-- TMPL_VAR NAME="cell_name"-->' value="<!-- TMPL_VAR NAME="estimated_amount" -->"   />
216                 <!--TMPL_ELSE -->
217                     <input type="text" style="text-align: right;  width:90%; " size='6' name='<!-- TMPL_VAR NAME="cell_name"-->'  value="<!-- TMPL_VAR NAME="estimated_amount" -->"  id='<!-- TMPL_VAR NAME="budget_id"-->' class='<!-- TMPL_VAR NAME="budget_id"-->' onchange="calcTotalRow(this);" />
218                 <!--/TMPL_IF -->
219
220                 </td></tr>
221             </table>
222             </td>
223         <!-- /TMPL_LOOP -->
224
225         <td>
226         <table class="invis" width="100%">
227             <tr>
228             <td width="50%"    align="right"  
229        <!-- TMPL_IF Name="show_actual" -->
230             <!-- TMPL_IF NAME="act_negative" --> style="color: red;" <!--/TMPL_IF -->
231                 <!-- TMPL_IF NAME="act_positive" --> style="color: green;" <!--/TMPL_IF --> >
232                 <!-- TMPL_VAR NAME="budget_act_remain"-->
233         <!-- TMPL_ELSE --> >
234         <!-- /TMPL_IF -->
235             </td>
236
237             <td width="50%"    align="right"  
238         <!-- TMPL_IF NAME="est_negative" --> style="color: red;" <!--/TMPL_IF --> 
239         <!-- TMPL_IF NAME="est_positive" --> style="color: green;" <!--/TMPL_IF --> 
240         name="est_total" id='budget_est_<!-- TMPL_VAR NAME="budget_id"-->'>  <!-- TMPL_VAR NAME="budget_est_remain"-->&nbsp;    
241             </td>
242             </tr>
243         </table>
244         </td>
245
246         <td align="center">
247              <!-- TMPL_UNLESS Name="budget_lock" -->
248                     <input type="button"  onclick="autoFillRow('<!-- TMPL_VAR NAME="budget_id"-->')" value="Auto-fill row"/>
249             <!-- TMPL_ELSE  -->
250              <div style="color:red;">not owned</div>
251             <!-- /TMPL_UNLESS  -->
252         </td>
253         </tr>
254     <!-- /TMPL_LOOP -->
255     <tbody>
256     </table>
257
258     <!-- TMPL_IF NAME="show_actual" -->
259         <span><b>Each cell contain both actual and estimated values.</b></span><br />
260     <!-- TMPL_ELSE -->
261         <span><b>Cells contain estimated values only.</b></span><br />
262     <!-- /TMPL_IF -->
263     <span><b>Currency = <!-- TMPL_VAR NAME="cur" --> <!-- TMPL_VAR NAME="cur_format" --></b></span><br />
264     <!-- TMPL_IF name="budget_period_locked" -->
265         <!-- <input STYLE="background: gray;"   type="submit" value="Save" disabled='disabled'/> -->
266     <!-- TMPL_ELSE -->
267         <input type="button"  onclick="Check(this.form)" value="Save"/>
268     <!-- /TMPL_IF -->
269
270
271 <div id='hide_div'>
272     <!-- TMPL_LOOP NAME="authvals_row" -->
273
274      <!-- TMPL_UNLESS Name="display" -->
275         <input type="hidden" value="<!-- TMPL_VAR NAME="code" -->"  name="hide_cols"/>
276      <!-- /TMPL_UNLESS -->
277     <!-- /TMPL_LOOP -->
278
279  </div>
280
281
282 </form>
283
284 <form method="post" action="/cgi-bin/koha/admin/aqplan.pl">
285 <fieldset class="rows">
286     <ol>
287     <li><label for="outputfile">Output to a file named: </label><input type="text" name="basename" id="basename" value="Export" />
288     <label class="inline" for="MIME">Into an application
289     </label><!-- TMPL_VAR NAME="CGIextChoice" -->
290     <!-- TMPL_VAR NAME="CGIsepChoice" --> &nbsp;&nbsp;&nbsp;
291     <input type="submit" value="Output"/>
292     <input type="hidden" name="report_name" value="<!--TMPL_VAR NAME="report_name" -->" />
293     <input type="hidden" name="output" value="file" />
294     </li></ol>
295     </fieldset>
296 </form>
297
298         <!-- TMPL_ELSE  -->
299 No budgets to display for this search criteria
300         <!-- /TMPL_IF   -->
301
302
303 </div>
304 </div>
305 <div class="yui-b">
306 <!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
307 </div>
308 </div>
309 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->