Fix for Bug 3970, Warn user when there is no active currency
[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 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/yahoo/yahoo.js" type="text/javascript"></script>
13 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/event/event.js" type="text/javascript"></script>
14 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/dom/dom.js" type="text/javascript"></script>
15 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/menu/menu.js" type="text/javascript"></script>
16 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/container/menu.js" type="text/javascript"></script>
17 <script  src="<!-- TMPL_VAR NAME="yuipath" -->/yahoo-dom-event/yahoo-dom-event.js"  type="text/javascript"></script>
18
19 <script type="text/javascript" src="<!-- TMPL_VAR NAME='themelang' -->/js/acq.js"></script>
20 <script type="text/javascript">
21 // ---------------------------------------------------------------------
22 // Javascript
23 // ---------------------------------------------------------------------
24     function Check(f) {
25             var ok=1;
26             var _alertString="";
27             var alertString2;
28             var arr = document.getElementsByName('est_total')
29
30             for ( var i=0, len=arr.length; i<len; ++i ){
31                     var tot = arr[i].innerHTML;
32
33                     if (tot == 'NaN') {
34                         _alertString += "\n- " + _("One or more cell values is non-numeric");
35                     }
36             }
37
38             if (_alertString.length==0) {
39
40                 var op  = document.createElement('input');
41                 op.setAttribute("type","hidden");
42                 op.setAttribute("name","op");
43                 op.setAttribute("value","save");   //ohh the pain...
44
45                 document.Aform.appendChild(op);
46                 document.Aform.submit()
47
48             } else {
49                     alertString2  = _("Form not submitted because of the following problem(s)");
50                     alertString2 += "\n------------------------------------------------------------------------------------\n";
51                     alertString2 += _alertString;
52                     alert(alertString2);
53             }
54     }
55
56
57 YAHOO.util.Event.onAvailable("popmenu", function () {
58
59     var itemData  = new Array();
60     table = document.getElementById('plan') 
61     tableTmp =  table.cloneNode(true); 
62     tableTmp.id = 'planTmp';
63
64     <!-- TMPL_LOOP NAME="authvals_row" -->
65         itemData.push( {   text: "<!-- TMPL_VAR NAME="val" -->",  onclick: { fn: addColumn, obj:  ["<!-- TMPL_VAR NAME="colnum" -->",  "<!-- TMPL_VAR NAME="code" -->"]    }    }     );
66
67     <!-- /TMPL_LOOP -->
68     oMenu = new YAHOO.widget.Menu("basicmenu",
69             {  position: "dynamic", itemdata: itemData , clicktohide  : "true" , context:["popmenu","tl","tr"] }
70     );
71
72    oMenu.render("popmenu");
73    YAHOO.util.Event.addListener("add_popmenu_item", "click", oMenu.show, null, oMenu);
74
75 // oMenu.removeItem(2);   // TODO.....
76
77 });
78
79 </script>
80
81 <title>
82 Budget planning
83 </title>
84 </head>
85 <body>
86 <!-- TMPL_INCLUDE NAME="header.inc" -->
87 <!-- TMPL_INCLUDE NAME="budgets-admin-search.inc" -->
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-toolbar.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     <!-- TMPL_IF name="cur" --><p><b>Currency = <!-- TMPL_VAR name="cur" --></b></p><!-- TMPL_ELSE --><div class="dialog alert"><h3>No active currency is defined</h3><p>Please <a href="/cgi-bin/koha/admin/currency.pl">specify an active currency</a>.</p></div><!-- /TMPL_IF -->
159
160     <table id="plan" width="100%">
161     <thead>
162     <tr>
163     <th>Budget name</th>
164     <th>Budget total</th>
165
166     <!-- TMPL_LOOP NAME="authvals_row" -->
167          <!-- TMPL_IF NAME="display" -->
168             <th id="<!-- TMPL_VAR NAME="code" -->"   style="text-align: center;"
169                         class="<!-- TMPL_VAR NAME='colnum' -->" >
170         <!-- TMPL_ELSE -->
171             <th id="<!-- TMPL_VAR NAME="code" -->"   style="text-align: center;
172                             display:none;" 
173                         class="<!-- TMPL_VAR NAME='colnum' -->" >
174         <!-- /TMPL_IF -->
175
176     <!-- TMPL_VAR NAME="code" -->&nbsp;<span class="buttonPlus" onclick="delColumn('<!-- TMPL_VAR NAME="colnum" -->', '<!-- TMPL_VAR NAME="code" -->')"  > - &nbsp;</span></th>
177
178     <!-- /TMPL_LOOP -->
179
180     <th >Budget remaining    </th>
181
182     <th id='popmenu' style=" text-align: center;" >
183     <span id="add_popmenu_item"    class="buttonPlus" > + </span></th>
184     </tr>
185     </thead>
186
187     <tbody>
188     <!-- TMPL_LOOP NAME="budget_lines" -->
189             <!-- TMPL_IF Name="budget_lock" -->
190         <tr  class="highlight"  > 
191             <!--TMPL_ELSE -->
192         <tr > 
193             <!--/TMPL_IF -->
194
195         <td align='left'><!-- TMPL_VAR NAME="budget_name_indent"--></td>
196         <td align='right'><span id='budget_tot_formatted" -->'><!-- TMPL_VAR NAME="budget_amount_formatted"-->&nbsp;</span>
197
198         <!-- NEXT DIV ELEMENT IS USED BY JS FOR CALC-ING AUTO-FILL AND ESTIMATED AMOUNTS -->
199         <div style="display:none;" id='budget_tot_<!-- TMPL_VAR NAME="budget_id" -->'><!-- TMPL_VAR NAME="budget_amount"--></div></td>
200
201         <!-- TMPL_LOOP NAME="lines"     -->
202             <td 
203             <!-- TMPL_UNLESS Name="display" --> style="display:none;"<!-- /TMPL_UNLESS -->
204                     class="<!-- TMPL_VAR NAME="colnum"-->"  >  
205             <table class="invis" width="100%">
206                 <tr>
207                     <!-- TMPL_IF Name="show_actual" -->
208                         <td   width="50%"  align="right" ><!-- TMPL_VAR NAME="actual_amount" --></td>
209                     <!--/TMPL_IF -->
210                 <td align="right">
211
212                 <!--TMPL_IF  Name="budget_lock" -->
213                     <!-- TMPL_VAR NAME="estimated_amount" -->&nbsp;
214                     <input type="hidden" style="text-align: right;"  name='<!-- TMPL_VAR NAME="cell_name"-->' value="<!-- TMPL_VAR NAME="estimated_amount" -->"   />
215                 <!--TMPL_ELSE -->
216                     <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);" />
217                 <!--/TMPL_IF -->
218
219                 </td></tr>
220             </table>
221             </td>
222         <!-- /TMPL_LOOP -->
223
224         <td>
225         <table class="invis" width="100%">
226             <tr>
227             <td width="50%"    align="right"  
228        <!-- TMPL_IF Name="show_actual" -->
229             <!-- TMPL_IF NAME="act_negative" --> style="color: red;" <!--/TMPL_IF -->
230                 <!-- TMPL_IF NAME="act_positive" --> style="color: green;" <!--/TMPL_IF --> >
231                 <!-- TMPL_VAR NAME="budget_act_remain"-->
232         <!-- TMPL_ELSE --> >
233         <!-- /TMPL_IF -->
234             </td>
235
236             <td width="50%"    align="right"  
237         <!-- TMPL_IF NAME="est_negative" --> style="color: red;" <!--/TMPL_IF --> 
238         <!-- TMPL_IF NAME="est_positive" --> style="color: green;" <!--/TMPL_IF --> 
239         name="est_total" id='budget_est_<!-- TMPL_VAR NAME="budget_id"-->'>  <!-- TMPL_VAR NAME="budget_est_remain"-->&nbsp;    
240             </td>
241             </tr>
242         </table>
243         </td>
244
245         <td align="center">
246              <!-- TMPL_UNLESS Name="budget_lock" -->
247                     <input type="button"  onclick="autoFillRow('<!-- TMPL_VAR NAME="budget_id"-->')" value="Auto-fill row"/>
248             <!-- TMPL_ELSE  -->
249              <div style="color:red;">not owned</div>
250             <!-- /TMPL_UNLESS  -->
251         </td>
252         </tr>
253     <!-- /TMPL_LOOP -->
254     <tbody>
255     </table>
256
257     <!-- TMPL_IF NAME="show_actual" -->
258         <span><b>Each cell contain both actual and estimated values.</b></span><br />
259     <!-- TMPL_ELSE -->
260         <span><b>Cells contain estimated values only.</b></span><br />
261     <!-- /TMPL_IF -->
262     <!-- TMPL_IF name="budget_period_locked" -->
263         <!-- <input STYLE="background: gray;"   type="submit" value="Save" disabled='disabled'/> -->
264     <!-- TMPL_ELSE -->
265         <input type="button"  onclick="Check(this.form)" value="Save"/>
266     <!-- /TMPL_IF -->
267
268
269 <div id='hide_div'>
270     <!-- TMPL_LOOP NAME="authvals_row" -->
271
272      <!-- TMPL_UNLESS Name="display" -->
273         <input type="hidden" value="<!-- TMPL_VAR NAME="code" -->"  name="hide_cols"/>
274      <!-- /TMPL_UNLESS -->
275     <!-- /TMPL_LOOP -->
276
277  </div>
278
279
280 </form>
281
282 <form method="post" action="/cgi-bin/koha/admin/aqplan.pl">
283 <fieldset class="rows">
284     <ol>
285     <li><label for="outputfile">Output to a file named: </label><input type="text" name="basename" id="basename" value="Export" />
286     <label class="inline" for="MIME">Into an application
287     </label><!-- TMPL_VAR NAME="CGIextChoice" -->
288     <!-- TMPL_VAR NAME="CGIsepChoice" --> &nbsp;&nbsp;&nbsp;
289     <input type="submit" value="Output"/>
290     <input type="hidden" name="report_name" value="<!--TMPL_VAR NAME="report_name" -->" />
291     <input type="hidden" name="output" value="file" />
292     </li></ol>
293     </fieldset>
294 </form>
295
296         <!-- TMPL_ELSE  -->
297 No budgets to display for this search criteria
298         <!-- /TMPL_IF   -->
299
300
301 </div>
302 </div>
303 </div>
304 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->