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