Merge branch 'bug_7455' into 3.12-master
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / serials / claims.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2     <title>Koha &rsaquo; Serials &rsaquo; Claims</title>
3     [% INCLUDE 'doc-head-close.inc' %]
4 [% INCLUDE 'calendar.inc' %]
5 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
6 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.uitablefilter.js"></script>
7 <script type="text/JavaScript" language="JavaScript">
8 //<![CDATA[
9          $(document).ready(function() {
10                 [% UNLESS ( preview ) %]$("#claimst").tablesorter({[% IF ( dateformat == 'metric' ) %]
11                         dateFormat: 'uk',[% END %]
12                         headers: { 0: { sorter: false },1:{sorter:false}}
13                 });[% END %]
14             $('#supplierid').change(function() {
15             $('#claims').submit();
16             });
17
18             // Case-insensitive version of jquery's contains function
19             jQuery.extend(
20                 jQuery.expr[':'], { 
21                     icontains : "jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())>=0" 
22                 }
23             );
24
25
26             // Checkboxes : Select All / None
27             $("span.checkall").html("<input type=\"checkbox\" name=\"CheckAll\"> "+_("Check All")+"</input>");
28             $("span.exportSelected").html("<a id=\"ExportSelected\" href=\"/cgi-bin/koha/serials/claims.pl\"> "+_("Export selected items data") +"<\/a>");
29
30         $("#CheckAll").click(function() {
31             $("#claimst tr:visible :checkbox").attr('checked', $("#CheckAll").is(':checked'));
32         });
33
34             // Generates a dynamic link for exporting the selection's data as CSV
35             $("#ExportSelected").click(function() {
36                 // We use input:checked because it's faster, but if there must new checkboxes  
37                 // used for other purpose on this page, please use [name=serialid]:checked instead
38                 var selected = $("input:checked");
39
40                 if (selected.length == 0) {
41                         alert(_('Please select at least one item to export.'));
42                         return false;
43                 }
44                 
45                 // Building the url from currently checked boxes
46                 var url = '/cgi-bin/koha/serials/lateissues-excel.pl?supplierid=&amp;op=claims';
47                 for (var i = 0; i < selected.length; i++) {
48                     url += '&amp;serialid=' + selected[i].value;
49                 }
50                 // And redirecting to the CSV page
51                 location.href = url;
52                 return false;
53             }); 
54
55         $("#titlefilter").keyup(function() {
56             $.uiTableFilter($("#claimst"), $("#titlefilter").val())
57             });
58
59         $("#branchfilter").keyup(function() {
60             $.uiTableFilter($("#claimst"), $("#branchfilter").val())
61             });
62          });
63
64         // Checks if the form can be sent (at least one checkbox must be checked)
65         function checkForm() {
66             if ($("input:checked").length == 0) {
67                 alert(_('Please select at least one item.'));
68                 return false;
69             }
70         }
71
72         // Filter by status
73         function filterByStatus() {
74             selectedStatus = $("#statusfilter").val();
75             if (selectedStatus == "all") {
76                 clearFilters();
77             } else {
78                 $("table#claimst tbody tr").hide();
79                 $("table#claimst tbody tr:contains(" + selectedStatus + ")").show();
80             }
81         }
82
83         // Filter by branch
84         function filterByBranch() {
85             selectedBranch = $("#branchfilter").val();
86             if (selectedBranch == "all") {
87                 clearFilters();
88             } else {
89                 $("table#claimst tbody tr").hide();
90                 $("table#claimst tbody tr:contains(" + selectedBranch + ")").show();
91             }
92         }
93         // Filter by date
94         function filterByDate() {
95         var beginDate = Date_from_syspref($("#from").val()).getTime();
96         var endDate   = Date_from_syspref($("#to").val()).getTime();
97             
98             // Checks if the beginning date is valid
99             if (!parseInt(beginDate)) {
100                 alert(_('The beginning date is missing or invalid.'));
101                 return false;
102             }
103
104             // Checks if the ending date is valid
105             if (!parseInt(endDate)) {
106                 alert(_('The ending date is missing or invalid.'));
107                 return false;
108             }
109
110             // Checks if beginning date is before ending date
111             if (beginDate > endDate) {
112                 // If not, we swap them
113                 var tmpDate = endDate;
114                 endDate = beginDate;
115                 beginDate = tmpDate;
116             }
117            
118             // We hide everything
119             $("table#claimst tbody tr").hide();
120
121             // For each date in the table
122             $(".planneddate").each(function() {
123
124                 // We make a JS Date Object, according to the locale
125                 var pdate = Date_from_syspref($(this).text()).getTime();
126
127                 // And checks if the date is between the beginning and ending dates
128                 if (pdate > beginDate && 
129                     pdate < endDate) {
130                         // If so, we can show the row
131                         $(this).parent().show();
132                     }
133
134             });
135         }
136
137         // Clears filters : shows everything
138         function clearFilters() {
139             $("table#claimst tbody tr").show();
140         }
141
142         function popup(supplierid,serialid){
143                 window.open('claims.pl?supplierid='+ supplierid +'&amp;serialid='+ serialid +'&amp;op=preview' ,'popup', 'width=600,height=400,toolbar=no,scrollbars=yes');
144         }
145
146 //]]>
147 </script>
148 </head>
149 <body id="ser_claims" class="ser">
150     [% INCLUDE 'header.inc' %]
151 [% UNLESS ( preview ) %]
152     [% INCLUDE 'serials-search.inc' %]
153 [% END %]
154
155 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a> &rsaquo; Claims</div>
156
157 [% UNLESS ( preview ) %]
158
159 <div id="doc3" class="yui-t2">
160    
161    <div id="bd">
162         <div id="yui-main">
163         <div class="yui-b">
164
165     <h1>Claims</h1>
166
167 [% IF ( letter ) %][% UNLESS ( missingissues ) %][% IF ( supplierid ) %] <div class="dialog alert">No missing issues found.</div>[% ELSE %]<div class="dialog message">Please choose a vendor.</div>[% END %][% END %][% END %]
168         
169              [% IF ( SHOWCONFIRMATION ) %]
170      <div class="dialog alert">Your notification has been sent.</div>
171      [% END %]
172 [% UNLESS ( letter ) %]<div class="dialog alert">No claims notice defined. <a href="/cgi-bin/koha/tools/letter.pl">Please define one</a>.</div>[% END %]
173     <form id="claims" name="claims" action="claims.pl" method="post">
174     <fieldset>
175             <label for="supplierid">Vendor: </label>
176             <select id="supplierid" name="supplierid">
177                 [% FOREACH suploo IN suploop %]
178                     [% IF ( suploo.selected ) %]
179                     <option value="[% suploo.id %]" selected="selected" >
180                     [% ELSE %]
181                     <option value="[% suploo.id %]">
182                     [% END %]
183                         [% suploo.name %]
184                         ([% suploo.count %])
185                     </option>
186                 [% END %]
187             </select>
188         <input type="submit" value="OK" />
189         [% IF ( phone ) %]Phone: [% phone %][% END %]
190         [% IF ( booksellerfax ) %]Fax: [% booksellerfax %][% END %]
191         [% IF ( bookselleremail ) %]</p><p><a href="mailto:[% bookselleremail %]">[% bookselleremail %]</a>[% END %]
192     </fieldset>
193 </form>
194
195    [% IF ( missingissues ) %]   
196     <h3>Missing issues</h3>
197     <form action="claims.pl" onsubmit="return false;">
198         <fieldset class="rows">
199         <legend>Filters :</legend>
200         
201         <ol>
202         <li>
203             <label for="statusfilter">Status : </label>
204             <select id="statusfilter" onchange="filterByStatus();">
205                 <option value="all" selected="selected">(All)</option>
206                 <option>Expected</option>
207                 <option>Arrived</option>
208                 <option>Late</option>
209                 <option>Missing</option>
210                 <option>Claimed</option>
211             </select>
212         </li>
213         
214         <li>
215             <label for="titlefilter">Title : </label>
216             <input id="titlefilter" type="text" />
217             <label for="branchfilter">Library: </label>
218             <select id="branchfilter" onchange="filterByBranch();">
219             [% FOREACH branchloo IN branchloop %]
220                 [% IF ( branchloo.selected ) %]
221                 <option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>
222                 [% ELSE %]
223                 <option value="[% branchloo.value %]">[% branchloo.branchname %]</option>
224                 [% END %]
225             [% END %]
226         </select>
227         </li>
228         
229         <li>
230         <label for="from">From</label>
231         <input type="text" name="begindate" id="from" value="[% begindate %]" size="10" maxlength="10" class="datepickerfrom" />
232         <label for="to" style="float:none;">To</label>
233         <input type="text" name="enddate" id="to" value="[% enddate %]" size="10" maxlength="10" class="datepickerto" />
234         <span class="hint">[% INCLUDE 'date-format.inc' %]</span>
235             <input type="button" value="OK" onclick="filterByDate();" />
236         </li>
237         
238         <li>
239         <input type="reset" value="Clear filters" onclick="clearFilters();" />
240         </li>
241         </ol>
242         </fieldset>
243     </form>
244
245     <fieldset>
246         <form action="claims.pl" method="post" class="checkboxed" onsubmit="return checkForm()">
247         <input type="hidden" name="order" value="[% order %]" />
248          <table id="claimst">
249                 <thead><tr>
250                     [% IF ( letter ) %]
251                     <th><input type="checkbox" id="CheckAll"></th>
252                     [% END %]
253                     <th>Vendor</th>
254                     <th>Library</th>
255                     <th>Title</th>
256                     <th>Issue number</th>
257                     <th>Status</th>
258                     <th>Since</th>
259                     <th>Claim date</th>
260                 <th>Begin claim</th>
261                 </tr></thead>
262                 <tbody>[% FOREACH missingissue IN missingissues %]
263                     <tr>
264                         [% IF ( letter ) %]
265                             <td>
266                     <input type="checkbox" name="serialid" value="[% missingissue.serialid %]" />
267                             </td>
268                         [% END %]
269                         <td>
270                         [% missingissue.name %]
271                         </td>
272                         <td>
273                         [% missingissue.branchcode %]
274                         </td>
275                         <td>
276                         <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% missingissue.subscriptionid %]">[% missingissue.title |html %]</a>
277                         </td>
278                         <td>
279                         [% missingissue.serialseq %]
280                         </td>
281                         <td>
282                             [% IF ( missingissue.status1 ) %]Expected[% END %]
283                             [% IF ( missingissue.status2 ) %]Arrived[% END %]
284                             [% IF ( missingissue.status3 ) %]Late[% END %]
285                             [% IF ( missingissue.status4 ) %]Missing[% END %]
286                             [% IF ( missingissue.status7 ) %]Claimed[% END %]
287                         </td>
288                         <td class="planneddate">
289                         [% missingissue.planneddate %]
290                         </td>
291                         <td>
292                         [% missingissue.claimdate %]
293                         </td>
294                         <td>
295                             <a href="/cgi-bin/koha/serials/lateissues-excel.pl?supplierid=[% missingissue.supplieri %]&amp;serialid=[% missingissue.serialid %]&amp;op=claims">Export item data</a>
296                         </td>
297                     </tr>
298                 [% END %]</tbody>
299             </table>
300              <p><span class="exportSelected"></span></p>
301
302 [% IF ( letter ) %]
303         <fieldset class="action"> <label for="letter_code">Select notice:</label>
304             <select name="letter_code" id="letter_code">
305                 [% FOREACH letter IN letters %]
306                     <option value="[% letter.code %]">[% letter.name %]</option>
307                 [% END %]
308                         </select>
309             <input type="hidden" name="op" value="send_alert" /><input type="submit" name="submit" class="button" value="Send notification" /></fieldset>
310             [% END %]
311         </form>
312     </fieldset>
313 [% END %]
314
315 [% ELSE %]
316
317 <div id="doc" class="yui-t7">
318    <div id="bd">
319         
320 [% IF ( supplierloop ) %]
321         [% FOREACH supplierloo IN supplierloop %]
322         [% IF ( supplierloo.name ) %]
323         <p><b>[% supplierloo.name %]</b><br />
324         [% END %]
325         [% IF ( supplierloo.postal ) %]
326         [% supplierloo.postal %]<br />
327         [% END %]
328         [% IF ( supplierloo.contphone ) %]
329         Ph: [% supplierloo.contphone %]<br />
330         [% END %]
331         [% IF ( supplierloo.contfax ) %]
332         Fax: [% supplierloo.contfax %]<br />
333         [% END %]
334         [% IF ( supplierloo.contemail ) %]
335         Email: [% supplierloo.contemail %]<br />
336         [% END %]
337         [% IF ( supplierloo.accountnumber ) %]
338         A/C: [% supplierloo.accountnumber %]</p>
339         [% END %]
340         [% IF ( supplierloo.contact ) %]
341         <p>Dear [% supplierloo.contact %]</p>
342         [% ELSE %]
343         <p>To whom it may concern</p>
344         [% END %]
345         <p>The following items have not been received from you and are now considered missing:</p>
346         [% END %]
347 [% END %]
348         [% IF ( missingissues ) %]
349         <h3>Missing issues</h3>
350         <table>
351             <tr>
352                 <td><b>Vendor<b></td>
353                 <td><b>Title</b></td>
354                 <td><b>Issue number</b></td>
355                 <td><b>Missing since</b></td>
356             </tr>
357             [% FOREACH missingissue IN missingissues %]
358                 <tr>
359                     <td>
360                     [% missingissue.name %]
361                     </td>
362                     <td>
363                     [% missingissue.Title |html %]
364                     </td>
365                     <td>
366                     [% missingissue.serialseq %]
367                     </td>
368                     <td>
369                     [% missingissue.planneddate %]
370                     </td>
371                 </tr>
372             [% END %]
373         </table>
374         [% END %]
375
376 <p class="noprint"><a href="#" onclick="window.print(); return false;">Print</a> &nbsp; <a href="#" class="close">Close</a></p>
377 [% END %]
378
379 </div>
380 </div>
381
382 [% UNLESS ( preview ) %]
383 <div class="yui-b">
384 [% INCLUDE 'serials-menu.inc' %]
385 </div>
386 [% END %]
387 </div>
388 [% INCLUDE 'intranet-bottom.inc' %]