Bug 1687: Can't assign holidays to all branches at once.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / holidays.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Tools &rsaquo; Calendar</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <!-- TMPL_INCLUDE NAME="calendar.inc" -->
5 <script type="text/javascript" src="<!-- TMPL_VAR NAME="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
6 <script language="JavaScript" type="text/javascript">
7 //<![CDATA[
8         // Captura el evento onmousemove para cualquier navegador
9         if (document.layers) { // Netscape
10                 document.captureEvents(Event.MOUSEMOVE);
11             document.onmousemove = captureMousePosition;
12         } else if (document.all) { // Internet Explorer
13             document.onmousemove = captureMousePosition;
14         } else if (document.getElementById) { // Netcsape 6
15             document.onmousemove = captureMousePosition;
16         }
17
18         var mouseXMax = 0;
19         var mouseYMax = 0;
20         var mouseX = 0;
21         var mouseY = 0;
22         var weekdays = new Array("Sundays", "Mondays", "Tuesdays",
23                         "Wednesdays", "Thursdays", "Fridays", "Saturdays");
24
25         function captureMousePosition(e) {
26             if (document.layers) {
27                     mouseX = e.pageX;
28                         mouseY = e.pageY;
29                 mouseXMax = window.innerWidth + window.pageXOffset;
30                     mouseYMax = window.innerHeight + window.pageYOffset;
31             } else if (document.all) {
32                     mouseX = window.event.x + document.body.scrollLeft;
33                 mouseY = window.event.y + document.body.scrollTop;
34                 mouseXMax = document.body.clientWidth + document.body.scrollLeft;
35                 mouseYMax = document.body.clientHeight + document.body.scrollTop;
36             } else if (document.getElementById) {
37                 mouseX = e.pageX;
38                     mouseY = e.pageY;
39                 mouseXMax = window.innerWidth + window.pageXOffset;
40                 mouseYMax = window.innerHeight + window.pageYOffset;
41             }
42         } 
43
44         function holidayOperation(formObject, opType) {
45                 var op = document.getElementsByName('operation');
46                 op[0].value = opType;
47                 formObject.submit();
48         }
49
50         // This function shows the "Show Holiday" panel //
51         function showHoliday (exceptionPosibility, dayName, day, month, year, weekDay, title, description) {
52                 $("#newHoliday").slideUp("fast");
53                 $("#showHoliday").slideDown("fast");
54                 document.getElementById('showDayname').value = dayName;
55                 document.getElementById('showBranchName').value = document.getElementById('branch').value;
56                 document.getElementById('showDay').value = day;
57                 document.getElementById('showMonth').value = month;
58                 document.getElementById('showYear').value = year;
59                 document.getElementById('showDescription').value = description;
60                 document.getElementsByName('showWeekday')[0].value = weekDay;
61                 document.getElementById('showTitle').value = title;
62                 
63                 if (exceptionPosibility == 1) {
64                         document.getElementById('exceptionPosibility').style.display = 'inline';
65                 } else {
66                         document.getElementById('exceptionPosibility').style.display = 'none';
67                 }
68         }
69
70         // This function shows the "Add Holiday" panel //
71         function newHoliday (dayName, day, month, year, weekDay) {
72                 $("#showHoliday").slideUp("fast");
73                 $("#newHoliday").slideDown("fast");
74                 $("#newDayname").val(dayName);
75                 $("#newBranchName").val($('#branch').val());
76                 $("#newDay").val(day);
77                 $("#newMonth").val(month);
78                 $("#newYear").val(year);
79                 $("#newWeekday")[0].val(weekDay);
80         }
81
82         function hidePanel(aPanelName) {
83                 $("#"+aPanelName).slideUp("fast");
84         }
85
86         function changeBranch () {
87                 var branch = $("#branch option:selected").val();
88                 location.href='/cgi-bin/koha/tools/holidays.pl?branch=' + branch + '&calendardate=' + "<!-- TMPL_VAR NAME='calendardate' -->";
89         }
90
91         function additionalInformation (anExplanation) {
92                 var panel = document.getElementById('information');
93                 var paragraph = document.getElementById('explanation');
94                 panel.style.display = 'inline'
95                 panel.style.top = mouseY;
96                 panel.style.left = mouseX;
97                 var info = document.createTextNode(anExplanation);
98                 if (paragraph.hasChildNodes()) {
99                         paragraph.removeChild(paragraph.lastChild);
100                 }
101                 paragraph.appendChild(info);
102         }
103
104         function Help() {
105                 newin=window.open("/cgi-bin/koha/help.pl","KohaHelp",'width=600,height=600,toolbar=false,scrollbars=yes');
106         }
107         $(document).ready(function() {
108                 $("#branch").change(function(){
109                         changeBranch();
110                 });
111                 $("#holidayexceptions").tablesorter({
112                   sortList: [[0,0]], widgets: ['zebra']
113                 });
114                 $("#holidayweeklyrepeatable").tablesorter({
115                   sortList: [[0,0]], widgets: ['zebra']
116                 });
117                 $("#holidaysyearlyrepeatable").tablesorter({
118                   sortList: [[0,0]], widgets: ['zebra']
119                 });
120                 $("#holidaysunique").tablesorter({
121                   sortList: [[0,0]], widgets: ['zebra']
122                 });
123         });
124 //]]>
125 </script>
126 <style type="text/css">
127 .normalday { background-color :  #EDEDED; color :  Black; border : 1px solid #000000; }
128 .exception { background-color :  #EDEDED; color :  Black; border : 1px solid #000000; }
129 .holiday {  background-color :  red; color :  Black;  border : 1px solid #000000; }
130 .repeatableday {  background-color :  yellow; color :  Black;  border : 1px solid #000000; }
131 .information { z-index : 1; background-color :  #DCD2F1; width : 300px; display : none; border : 1px solid #000000; color :  #000000; font-size :  8pt; font-weight :  bold; background-color :  #FFD700; cursor :  pointer; padding : 2px; }
132 .panel { z-index : 1; width : 500px; display : none; border : 1px solid #000000; padding : 3px; /* position: absolute; */ background-color: #CCCCCC; }
133 div.dmy { display:inline; }
134 .blacklabel, div.dmy input { background-color:#FFFFFF; color:Black; font-size:10px; }
135 h1 select { width: 20em; }
136 </style>
137 </head>
138 <body>
139 <!-- TMPL_INCLUDE NAME="header.inc" -->
140 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
141
142 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; Calendar</div>
143
144 <div id="doc3" class="yui-t2">
145    
146    <div id="bd">
147         <div id="yui-main">
148         <div class="yui-b">
149
150
151
152
153 <!-- *************************************************************************************** -->
154 <!-- ******                     START OF INFORMATION PANEL                            ****** -->
155 <!-- *************************************************************************************** -->
156
157 <div class="information" style="position:absolute" id="information" onclick=" hidePanel('information')">
158         <table>
159                 <tr>
160                         <td>
161                                 <p id="explanation" style="display:inline;align:justify"></p>
162                         </td>
163                 </tr>
164         </table>
165 </div>
166
167 <!-- ************************************************************************************** -->
168 <!-- ******                      END OF INFORMATION PANEL                            ****** -->
169 <!-- ************************************************************************************** -->
170
171 <h1>Define the holidays for :</h1>
172         <label for="branch">Select a library :</label>
173             <select id="branch" name="branch">
174                 <!-- TMPL_LOOP NAME="branchloop" -->
175                     <!-- TMPL_IF NAME="selected" -->
176                         <option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
177                     <!-- TMPL_ELSE -->
178                         <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
179                     <!-- /TMPL_IF -->
180                 <!-- /TMPL_LOOP -->
181             </select>
182         <ul>
183                 <li>Search in the calendar the day you want to set as holiday.</li>
184                 <li>Complete the information in the right area.</li>
185                 <li>Once you finish the steps above, click Save.</li>
186         </ul>
187         <p>
188                 <span class="normalday">Working day</span>
189                 <span class="holiday">Unique holiday</span>
190                 <span class="repeatableday">Repeatable holiday</span>
191                 <span class="exception">Holiday exception</span>
192         </p>
193         
194         <!-- ******************************** FLAT PANELS ******************************************* -->
195         <!-- *****           Makes all the flat panel to deal with holidays                     ***** -->
196         <!-- **************************************************************************************** -->
197
198         <!-- ********************** Panel for showing already loaded holidays *********************** -->
199         <div class="panel" id="showHoliday">
200                 <form action="/cgi-bin/koha/tools/exceptionHolidays.pl" method="post">
201                         <h2>Edit this holiday</h2>
202                         <p>
203                                 <label for="showBranchName">Library</label>
204                                 <input type="text" size="20" id="showBranchName" name="showBranchName" readonly="readonly" class="blacklabel" />
205                         </p>
206                         <p>
207                                 <label for="showDayname">Day name</label>
208                                 <input type="text" size="20" id="showDayname" name="showDayname" readonly="readonly" class="blacklabel" />
209                                 <input type="hidden" name="showWeekday" />
210                         </p>
211                         <div class="dmy">
212                                 <label for="showDay">Day</label> <input type="text" size="2" id="showDay" name="showDay" readonly="readonly" />
213                                 <label for="showMonth">Month</label> <input type="text" size="2" id="showMonth" name="showMonth" readonly="readonly" />
214                                 <label for="showYear">Year</label> <input type="text" size="4" id="showYear" name="showYear" readonly="readonly" />             
215                         </div>
216                     <p><label for="showDescription">Description:</label>
217                                 <br />
218                                 <textarea rows="2" cols="40" id="showDescription" name="showDescription"></textarea>    
219                         </p>
220                         <div id="exceptionPosibility" style="position:static">
221                                 <input type="radio" name="showOperation" id="showOperationExc" value="exception" /> <label for="showOperationExc">Generate an exception to this holiday.</label>
222                                 <a href="#" onclick=" additionalInformation('You can make an exception for this holiday rule. This means that you will be able to say for a repeatable holiday, that there is one of those days that is going to be an exception.')"><img src="<!-- TMPL_VAR NAME="themelang" -->/../img/more.gif" border="0" alt="More information" /></a>
223                         </div>
224                         <input type="radio" name="showOperation" id="showOperationDel" value="delete" checked="checked" /> <label for="showOperationDel">Delete this holiday</label>.
225                         <a href="#" onclick=" additionalInformation('This will delete this holiday rule. In case it is a repeatable holiday, this option checks for posible exceptions. In case those exists, this option take care of set this exceptions to regular holidays.')"><img src="<!-- TMPL_VAR NAME="themelang" -->/../img/more.gif" border="0" alt="More information" /></a>
226                         <p>
227                                 <input type="submit" name="submit" value="Save" />
228                                 <input type="button" name="cancel2" value="Cancel" onclick=" hidePanel('showHoliday');hidePanel('information')" />
229                         </p>
230                 </form>
231         </div>
232
233         <!-- ***************************** Panel to deal with new holidays **********************  -->
234         <div class="panel" id="newHoliday">
235                 <form action="/cgi-bin/koha/tools/newHolidays.pl" method="post">
236                                 <input type="hidden" name="branchCodes" id="branchCodes" value="<!-- TMPL_VAR NAME="branchcodes" -->" /> 
237                         <h2>Add new holiday</h2>
238                         <p>
239                                 <label for="newBranchName">Library</label>
240                                 <input type="text" size="20" id="newBranchName" name="newBranchName" readonly="readonly" class="blacklabel" />
241                         </p>
242                         <p>
243                                 <label for="newDayname">Day name</label>
244                                 <input type="text" size="20" id="newDayname" name="newDayname" readonly="readonly" class="blacklabel" />
245                                 <input type="hidden" name="newWeekday" />
246                         </p>
247                         <div class="dmy">
248                                 <label for="newDay">Day</label> <input type="text" size="2" id="newDay" name="newDay" readonly="readonly" />
249                                 <label for="newMonth">Month</label> <input type="text" size="2" id="newMonth" name="newMonth"  readonly="readonly" />
250                                 <label for="newYear">Year</label> <input type="text" size="4" id="newYear" name="newYear" readonly="readonly" />
251                         </div>
252                         <p><label for="newDescription">Description:</label>
253                                 <br />
254                                 <textarea rows="2" cols="40" id="newDescription" name="newDescription"></textarea>
255                         </p>
256                                 <input type="radio" name="newOperation" id="newOperationOnce" value="holiday" checked="checked" />
257                                 <label for="newOperationOnce">Holiday only on this day</label>.
258                                 <a href="#" onclick=" additionalInformation('Make a single holiday. For example, selecting August 1st, 2012 will make it holiday, but will not affect August 1st in other years.')"><img src="<!-- TMPL_VAR NAME="themelang" -->/../img/more.gif" border="0" alt="More information" /></a>
259                                 <br />
260                                 <input type="radio" name="newOperation" id="newOperationDay" value="weekday" />
261                                 <label for="newOperationDay">Holiday repeated every same day of the week</label>.
262                                 <a href="#" onclick=" additionalInformation('Make this weekday a holiday, every week. For example, if your library is closed on Saturdays, use this option to make every Saturday a holiday.')"><img src="<!-- TMPL_VAR NAME="themelang" -->/../img/more.gif" border="0" alt="More information" /></a>
263                                 <br />
264                                 <input type="radio" name="newOperation" id="newOperationYear" value="repeatable" />
265                                 <label for="newOperationYear">Holiday repeated yearly on the same date</label>.
266                                 <a href="#" onclick=" additionalInformation('This will take this day and month as a reference to make it holiday. Through this option, you can repeat this rule for every year. For example, selecting August 1st will make August 1st a holiday every year.')"><img src="<!-- TMPL_VAR NAME="themelang" -->/../img/more.gif" border="0" alt="More information" /></a>
267                                 <p>
268                                 <input type="checkbox" name="allBranches" id="allBranches" />
269                                 <label for="allBranches">Copy to all locations</label>.
270                                 <a href="#" onclick=" additionalInformation('If checked, this holiday will be copied to all locations. If the holiday already exists for a location, no change is made.')"><img src="<!-- TMPL_VAR NAME="themelang" -->/../img/more.gif" border="0" alt="More information" /></a>
271                                 </p><p>
272                                         <input type="submit" name="submit" value="Save" />
273                                         <input type="button" name="cancel2" value="Cancel" onclick=" hidePanel('newHoliday');hidePanel('information')" />
274                                 </p>
275                 </form>
276         </div>
277
278         <!-- *************************************************************************************** -->
279         <!-- ******                          END OF FLAT PANELS                               ****** -->
280         <!-- *************************************************************************************** -->
281
282 <!-- ************************************************************************************** -->
283 <!-- ******                              MAIN SCREEN CODE                            ****** -->
284 <!-- ************************************************************************************** -->
285 <h2>Calendar information</h2>
286 <div id="calendar-container">
287 <script type="text/javascript">
288         /* Creates all the structures to deal with all diferents kinds of holidays */
289         var week_days = new Array();
290         var holidays = new Array();
291         var exception_holidays = new Array();
292         var day_month_holidays = new Array();
293         var hola= "<!-- TMPL_VAR NAME="code" -->";
294         <!-- TMPL_LOOP NAME="WEEK_DAYS_LOOP" -->
295         week_days["<!-- TMPL_VAR NAME="KEY" -->"] = {title:"<!-- TMPL_VAR NAME="TITLE" -->", description:"<!-- TMPL_VAR NAME="DESCRIPTION" -->"};
296         <!-- /TMPL_LOOP -->
297         <!-- TMPL_LOOP NAME="HOLIDAYS_LOOP" -->
298         holidays["<!-- TMPL_VAR NAME="KEY" -->"] = {title:"<!-- TMPL_VAR NAME="TITLE" -->", description:"<!-- TMPL_VAR NAME="DESCRIPTION" -->"};
299         <!-- /TMPL_LOOP -->
300         <!-- TMPL_LOOP NAME="EXCEPTION_HOLIDAYS_LOOP" -->
301         exception_holidays["<!-- TMPL_VAR NAME="KEY" -->"] = {title:"<!-- TMPL_VAR NAME="TITLE" -->", description:"<!-- TMPL_VAR NAME="DESCRIPTION" -->"};
302         <!-- /TMPL_LOOP -->
303         <!-- TMPL_LOOP NAME="DAY_MONTH_HOLIDAYS_LOOP" -->
304         day_month_holidays["<!-- TMPL_VAR NAME="KEY" -->"] = {title:"<!-- TMPL_VAR NAME="TITLE" -->", description:"<!-- TMPL_VAR NAME="DESCRIPTION" -->"};
305         <!-- /TMPL_LOOP -->
306
307         /* This function gives css clases to each kind of day */
308         function dateStatusHandler(date) {
309                 var day = date.getDate();
310                 var month = date.getMonth() + 1;
311                 var year = date.getFullYear();
312                 var weekDay = date.getDay();
313                 var dayMonth = month + '/' + day;
314                 var dateString = year + '/' + month + '/' + day;
315                 if (exception_holidays[dateString] != null) {
316                         return 'exception';
317                 } else if ((week_days[weekDay] != null) || (day_month_holidays[dayMonth] != null)) {
318                         return 'repeatableday';
319                 } else if (holidays[dateString] != null) {
320                         return 'holiday';
321                 } else {
322                         return 'normalday';
323                 }
324         }
325
326         /* This function is in charge of showing the correct panel considering the kind of holiday */
327         function dateChanged(calendar) {
328                 var day = calendar.date.getDate();
329                 var month = calendar.date.getMonth() + 1;
330                 var year = calendar.date.getFullYear();
331                 var weekDay = calendar.date.getDay();
332                 var dayName = calendar.date.print('%A');
333                 var dayMonth = month + '/' + day;
334                 var dateString = year + '/' + month + '/' + day;
335                 if (calendar.dateClicked) {
336                         if (holidays[dateString] != null) {
337                                 showHoliday(0, dayName, day, month, year, weekDay, holidays[dateString].title,  holidays[dateString].description);
338                         } else if (exception_holidays[dateString] != null) {
339                                 showHoliday(0, dayName, day, month, year, weekDay, exception_holidays[dateString].title, exception_holidays[dateString].description);
340                         } else if (week_days[weekDay] != null) {
341                                 showHoliday(1, dayName, day, month, year, weekDay, week_days[weekDay].title,    week_days[weekDay].description);
342                         } else if (day_month_holidays[dayMonth] != null) {
343                                 showHoliday(1, dayName, day, month, year, weekDay, day_month_holidays[dayMonth].title, day_month_holidays[dayMonth].description);
344                         } else {
345                                 newHoliday(dayName, day, month, year, weekDay);
346                         }
347                 }
348         };
349         Calendar.setup(
350                 {
351                         flat : "calendar-container",
352                         flatCallback : dateChanged,
353                         date: "<!-- TMPL_VAR NAME='keydate' -->",
354                         dateStatusFunc : dateStatusHandler
355                 }
356         );
357 </script>
358
359 <div id="holiday-list">
360 <!-- Exceptions First -->
361 <!--   this will probably always have the least amount of data -->
362 <!-- TMPL_IF NAME="EXCEPTION_HOLIDAYS_LOOP" -->
363 <h3>Exceptions</h3>
364   <table id="holidayexceptions">
365 <thead><tr>
366   <th class="exception">Date</th>
367   <th class="exception">Title</th>
368   <th class="exception">Description</th>
369 </tr>
370 </thead>
371 <tbody>
372   <!-- TMPL_LOOP NAME="EXCEPTION_HOLIDAYS_LOOP" -->
373   <tr>
374   <td><!-- TMPL_VAR NAME="DATE" --></td>
375   <td><!-- TMPL_VAR NAME="TITLE" --></td>
376   <td><!-- TMPL_VAR NAME="DESCRIPTION" --></td> 
377   </tr>
378   <!-- /TMPL_LOOP --> 
379 </tbody>
380 </table>
381 <!-- /TMPL_IF -->
382
383 <!--TMPL_IF NAME="WEEK_DAYS_LOOP" -->
384 <h3>Weekly - Repeatable Holidays</h3>
385 <table id="holidayweeklyrepeatable">
386 <thead>
387 <tr>
388   <th class="repeatableday">Day of Week</th>
389   <th class="repeatableday">Title</th>
390   <th class="repeatableday">Description</th>
391 </tr>
392 </thead>
393 <tbody>
394   <!-- TMPL_LOOP NAME="WEEK_DAYS_LOOP" -->
395   <tr>
396   <td>
397 <script type="text/javascript">
398   document.write(weekdays[ <!-- TMPL_VAR NAME="KEY" -->]);
399 </script>
400   </td> 
401   <td><!-- TMPL_VAR NAME="TITLE" --></td> 
402   <td><!-- TMPL_VAR NAME="DESCRIPTION" --></td> 
403   </tr>
404   <!-- /TMPL_LOOP --> 
405 </tbody>
406 </table>
407 <!-- /TMPL_IF -->
408
409 <!-- TMPL_IF NAME="DAY_MONTH_HOLIDAYS_LOOP" -->
410 <h3>Yearly - Repeatable Holidays</h3>
411 <table id="holidaysyearlyrepeatable">
412 <thead>
413 <tr>
414   <!-- TMPL_IF EXPR="dateformat eq 'metric'" -->
415   <th class="repeatableday">Day/Month</th>
416   <!-- TMPL_ELSE -->
417   <th class="repeatableday">Month/Day</th>
418   <!-- /TMPL_IF -->
419   <th class="repeatableday">Title</th>
420   <th class="repeatableday">Description</th>
421 </tr>
422 </thead>
423 <tbody>
424   <!-- TMPL_LOOP NAME="DAY_MONTH_HOLIDAYS_LOOP" -->
425   <tr>
426   <td><!-- TMPL_VAR NAME="DATE" --></td>
427   <td><!-- TMPL_VAR NAME="TITLE" --></td> 
428   <td><!-- TMPL_VAR NAME="DESCRIPTION" --></td> 
429   </tr>
430   <!-- /TMPL_LOOP --> 
431 </tbody>
432 </table>
433 <!-- /TMPL_IF -->
434
435 <!-- TMPL_IF NAME="HOLIDAYS_LOOP" -->
436 <h3>Unique Holidays</h3>
437 <table id="holidaysunique">
438 <thead>
439 <tr>
440   <th class="holiday">Date</th>
441   <th class="holiday">Title</th>
442   <th class="holiday">Description</th>
443 </tr>
444 </thead>
445 <tbody>
446     <!-- TMPL_LOOP NAME="HOLIDAYS_LOOP" -->
447 <tr>
448   <td><!-- TMPL_VAR NAME="DATE" --></td>
449   <td><!-- TMPL_VAR NAME="TITLE" --></td>
450   <td><!-- TMPL_VAR NAME="DESCRIPTION" --></td>
451 </tr>
452   <!-- /TMPL_LOOP --> 
453 </tbody>
454 </table>
455 <!-- /TMPL_IF -->
456 </div>
457 </div>
458 </div>
459 </div>
460
461 <div class="yui-b noprint">
462 <!-- TMPL_INCLUDE NAME="tools-menu.inc" -->
463 </div>
464 </div>
465 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->