[MT2343] Removed useless select in the planning
[koha.git] / 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>
119     <td>
120         <label for="authcat_dropbox"  > Select planning type:</label>
121         <!-- TMPL_VAR NAME="authcat_dropbox" -->
122         <input type="submit" name="option_submit" value="Select" />
123     </td>
124     </tr>
125
126     <tr><td>
127     <!-- TMPL_IF NAME="show_active" -->
128         <input type="checkbox" id="show_active" name="show_active" value="1" checked="checked" />
129     <!-- TMPL_ELSE -->
130         <input type="checkbox" id="show_active" name="show_active" value="1" />
131         <!-- /TMPL_IF -->
132     <label for="show_active">Show active budgets only</label>
133     </td>
134     <td></td>
135     </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     <td></td>
147     </tr>
148     <!-- /TMPL_UNLESS -->
149     </table>
150 </fieldset>
151
152 <br />
153
154 <!-- Budget Lines -->
155
156     <!-- TMPL_IF NAME="budget_lines" -->
157
158     <table id="plan" width="100%">
159     <thead>
160     <tr>
161     <th>Budget name</th>
162     <th>Budget total</th>
163
164     <!-- TMPL_LOOP NAME="authvals_row" -->
165          <!-- TMPL_IF NAME="display" -->
166             <th id="<!-- TMPL_VAR NAME="code" -->"   style="text-align: center;"
167                         class="<!-- TMPL_VAR NAME='colnum' -->" >
168         <!-- TMPL_ELSE -->
169             <th id="<!-- TMPL_VAR NAME="code" -->"   style="text-align: center;
170                             display:none;" 
171                         class="<!-- TMPL_VAR NAME='colnum' -->" >
172         <!-- /TMPL_IF -->
173
174     <!-- TMPL_VAR NAME="code" -->&nbsp;<span class="buttonPlus" onclick="delColumn('<!-- TMPL_VAR NAME="colnum" -->', '<!-- TMPL_VAR NAME="code" -->')"  > - &nbsp;</span></th>
175
176     <!-- /TMPL_LOOP -->
177
178     <th >Budget remaining    </th>
179
180     <th id='popmenu' style=" text-align: center;" >
181     <span id="add_popmenu_item"    class="buttonPlus" > + </span></th>
182     </tr>
183     </thead>
184
185     <tbody>
186     <!-- TMPL_LOOP NAME="budget_lines" -->
187             <!-- TMPL_IF Name="budget_lock" -->
188         <tr  class="highlight"  > 
189             <!--TMPL_ELSE -->
190         <tr > 
191             <!--/TMPL_IF -->
192
193         <td align='left'><!-- TMPL_VAR NAME="budget_name_indent"--></td>
194         <td align='right'><span id='budget_tot_formatted" -->'><!-- TMPL_VAR NAME="budget_amount_formatted"-->&nbsp;</span>
195
196         <!-- NEXT DIV ELEMENT IS USED BY JS FOR CALC-ING AUTO-FILL AND ESTIMATED AMOUNTS -->
197         <div style="display:none;" id='budget_tot_<!-- TMPL_VAR NAME="budget_id" -->'><!-- TMPL_VAR NAME="budget_amount"--></div></td>
198
199         <!-- TMPL_LOOP NAME="lines"     -->
200             <td 
201             <!-- TMPL_UNLESS Name="display" --> style="display:none;"<!-- /TMPL_UNLESS -->
202                     class="<!-- TMPL_VAR NAME="colnum"-->"  >  
203             <table class="invis" width="100%">
204                 <tr>
205                     <!-- TMPL_IF Name="show_actual" -->
206                         <td   width="50%"  align="right" ><!-- TMPL_VAR NAME="actual_amount" --></td>
207                     <!--/TMPL_IF -->
208                 <td align="right">
209
210                 <!--TMPL_IF  Name="budget_lock" -->
211                     <!-- TMPL_VAR NAME="estimated_amount" -->&nbsp;
212                     <input type="hidden" style="text-align: right;"  name='<!-- TMPL_VAR NAME="cell_name"-->' value="<!-- TMPL_VAR NAME="estimated_amount" -->"   />
213                 <!--TMPL_ELSE -->
214                     <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);" />
215                 <!--/TMPL_IF -->
216
217                 </td></tr>
218             </table>
219             </td>
220         <!-- /TMPL_LOOP -->
221
222         <td>
223         <table class="invis" width="100%">
224             <tr>
225             <td width="50%"    align="right"  
226        <!-- TMPL_IF Name="show_actual" -->
227             <!-- TMPL_IF NAME="act_negative" --> style="color: red;" <!--/TMPL_IF -->
228                 <!-- TMPL_IF NAME="act_positive" --> style="color: green;" <!--/TMPL_IF --> >
229                 <!-- TMPL_VAR NAME="budget_act_remain"-->
230         <!-- TMPL_ELSE --> >
231         <!-- /TMPL_IF -->
232             </td>
233
234             <td width="50%"    align="right"  
235         <!-- TMPL_IF NAME="est_negative" --> style="color: red;" <!--/TMPL_IF --> 
236         <!-- TMPL_IF NAME="est_positive" --> style="color: green;" <!--/TMPL_IF --> 
237         name="est_total" id='budget_est_<!-- TMPL_VAR NAME="budget_id"-->'>  <!-- TMPL_VAR NAME="budget_est_remain"-->&nbsp;    
238             </td>
239             </tr>
240         </table>
241         </td>
242
243         <td align="center">
244              <!-- TMPL_UNLESS Name="budget_lock" -->
245                     <input type="button"  onclick="autoFillRow('<!-- TMPL_VAR NAME="budget_id"-->')" value="Auto-fill row"/>
246             <!-- TMPL_ELSE  -->
247              <div style="color:red;">not owned</div>
248             <!-- /TMPL_UNLESS  -->
249         </td>
250         </tr>
251     <!-- /TMPL_LOOP -->
252     <tbody>
253     </table>
254
255     <!-- TMPL_IF NAME="show_actual" -->
256         <span><b>Each cell contain both actual and estimated values.</b></span><br />
257     <!-- TMPL_ELSE -->
258         <span><b>Cells contain estimated values only.</b></span><br />
259     <!-- /TMPL_IF -->
260     <span><b>Currency = <!-- TMPL_VAR NAME="cur" --> <!-- TMPL_VAR NAME="cur_format" --></b></span><br />
261     <!-- TMPL_IF name="budget_period_locked" -->
262         <!-- <input STYLE="background: gray;"   type="submit" value="Save" disabled='disabled'/> -->
263     <!-- TMPL_ELSE -->
264         <input type="button"  onclick="Check(this.form)" value="Save"/>
265     <!-- /TMPL_IF -->
266
267
268 <div id='hide_div'>
269     <!-- TMPL_LOOP NAME="authvals_row" -->
270
271      <!-- TMPL_UNLESS Name="display" -->
272         <input type="hidden" value="<!-- TMPL_VAR NAME="code" -->"  name="hide_cols"/>
273      <!-- /TMPL_UNLESS -->
274     <!-- /TMPL_LOOP -->
275
276  </div>
277
278
279 </form>
280
281 <form method="post" action="/cgi-bin/koha/admin/aqplan.pl">
282 <fieldset class="rows">
283     <ol>
284     <li><label for="outputfile">Output to a file named: </label><input type="text" name="basename" id="basename" value="Export" />
285     <label class="inline" for="MIME">Into an application
286     </label><!-- TMPL_VAR NAME="CGIextChoice" -->
287     <!-- TMPL_VAR NAME="CGIsepChoice" --> &nbsp;&nbsp;&nbsp;
288     <input type="submit" value="Output"/>
289     <input type="hidden" name="report_name" value="<!--TMPL_VAR NAME="report_name" -->" />
290     <input type="hidden" name="output" value="file" />
291     </li></ol>
292     </fieldset>
293 </form>
294
295         <!-- TMPL_ELSE  -->
296 No budgets to display for this search criteria
297         <!-- /TMPL_IF   -->
298
299
300 </div>
301 </div>
302 <div class="yui-b">
303 <!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
304 </div>
305 </div>
306 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->