Bug 10240: (follow-up) don't delete transactions if auth fails
[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,-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             $("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 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.
37              var selected = $("input[name=serialid]:checked");
38
39                 if (selected.length == 0) {
40                         alert(_("Please select at least one item to export."));
41                         return false;
42                 }
43                 
44                 // Building the url from currently checked boxes
45                 var url = '/cgi-bin/koha/serials/lateissues-excel.pl?supplierid=&amp;op=claims';
46                 for (var i = 0; i < selected.length; i++) {
47                     url += '&amp;serialid=' + selected[i].value;
48                 }
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                 <th>Begin claim</th>
265                 </tr></thead>
266                 <tbody>[% FOREACH missingissue IN missingissues %]
267                     <tr>
268                         [% IF ( letter ) %]
269                             <td>
270                     <input type="checkbox" name="serialid" value="[% missingissue.serialid %]" />
271                             </td>
272                         [% END %]
273                         <td>
274                         [% missingissue.name %]
275                         </td>
276                         <td>
277                         [% missingissue.branchcode %]
278                         </td>
279                         <td>
280                         <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% missingissue.subscriptionid %]">[% missingissue.title |html %]</a>
281                         </td>
282                         <td>
283                         [% missingissue.serialseq %]
284                         </td>
285                         <td>
286                             [% IF ( missingissue.status1 ) %]<span class="status-expected">Expected</span>[% END %]
287                             [% IF ( missingissue.status3 ) %]<span class="status-late">Late</span>[% END %]
288                             [% IF ( missingissue.status4 ) %]<span class="status-missing">Missing</span>[% END %]
289                             [% IF ( missingissue.status7 ) %]<span class="status-claimed">Claimed</span>[% END %]
290                         </td>
291                         <td class="planneddate">
292                         [% missingissue.planneddate %]
293                         </td>
294                         <td>
295                         [% missingissue.claimdate %]
296                         </td>
297                         <td>
298                             <a href="/cgi-bin/koha/serials/lateissues-excel.pl?supplierid=[% missingissue.supplieri %]&amp;serialid=[% missingissue.serialid %]&amp;op=claims">Export item data</a>
299                         </td>
300                     </tr>
301                 [% END %]</tbody>
302             </table>
303              <p><span class="exportSelected"></span></p>
304
305 [% IF ( letter ) %]
306         <fieldset class="action"> <label for="letter_code">Select notice:</label>
307             <select name="letter_code" id="letter_code">
308                 [% FOREACH letter IN letters %]
309                     <option value="[% letter.code %]">[% letter.name %]</option>
310                 [% END %]
311                         </select>
312             <input type="hidden" name="op" value="send_alert" /><input type="submit" name="submit" class="button" value="Send notification" /></fieldset>
313             [% END %]
314         </form>
315     </fieldset>
316 [% END %]
317
318 [% ELSE %]
319
320 <div id="doc" class="yui-t7">
321    <div id="bd">
322         
323 [% IF ( supplierloop ) %]
324         [% FOREACH supplierloo IN supplierloop %]
325         [% IF ( supplierloo.name ) %]
326         <p><b>[% supplierloo.name %]</b><br />
327         [% END %]
328         [% IF ( supplierloo.postal ) %]
329         [% supplierloo.postal %]<br />
330         [% END %]
331         [% IF ( supplierloo.contphone ) %]
332         Ph: [% supplierloo.contphone %]<br />
333         [% END %]
334         [% IF ( supplierloo.contfax ) %]
335         Fax: [% supplierloo.contfax %]<br />
336         [% END %]
337         [% IF ( supplierloo.contemail ) %]
338         Email: [% supplierloo.contemail %]<br />
339         [% END %]
340         [% IF ( supplierloo.accountnumber ) %]
341         A/C: [% supplierloo.accountnumber %]</p>
342         [% END %]
343         [% IF ( supplierloo.contact ) %]
344         <p>Dear [% supplierloo.contact %]</p>
345         [% ELSE %]
346         <p>To whom it may concern</p>
347         [% END %]
348         <p>The following items have not been received from you and are now considered missing:</p>
349         [% END %]
350 [% END %]
351         [% IF ( missingissues ) %]
352         <h3>Missing issues</h3>
353         <table>
354             <tr>
355                 <td><b>Vendor<b></td>
356                 <td><b>Title</b></td>
357                 <td><b>Issue number</b></td>
358                 <td><b>Missing since</b></td>
359             </tr>
360             [% FOREACH missingissue IN missingissues %]
361                 <tr>
362                     <td>
363                     [% missingissue.name %]
364                     </td>
365                     <td>
366                     [% missingissue.Title |html %]
367                     </td>
368                     <td>
369                     [% missingissue.serialseq %]
370                     </td>
371                     <td>
372                     [% missingissue.planneddate %]
373                     </td>
374                 </tr>
375             [% END %]
376         </table>
377         [% END %]
378
379 <p class="noprint"><a href="#" onclick="window.print(); return false;">Print</a> &nbsp; <a href="#" class="close">Close</a></p>
380 [% END %]
381
382 </div>
383 </div>
384
385 [% UNLESS ( preview ) %]
386 <div class="yui-b">
387 [% INCLUDE 'serials-menu.inc' %]
388 </div>
389 [% END %]
390 </div>
391 [% INCLUDE 'intranet-bottom.inc' %]