2af7a0e6eb2b2a45c4d2da9f1d9e443be11471e1
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / letter.tt
1 [% USE Koha %]
2 [% USE Branches %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>Koha &rsaquo; Tools &rsaquo; Notices[% IF ( add_form or copy_form ) %][% IF ( modify ) %] &rsaquo; Modify notice[% ELSE %] &rsaquo; Add notice[% END %][% END %][% IF ( add_validate or copy_validate) %] &rsaquo; Notice added[% END %][% IF ( delete_confirm ) %] &rsaquo; Confirm deletion[% END %]</title>
5 [% INCLUDE 'doc-head-close.inc' %]
6 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
7 [% INCLUDE 'datatables.inc' %]
8 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.insertatcaret.js"></script>
9 <script type="text/javascript">
10 //<![CDATA[
11 $(document).ready(function() {
12     $("#lettert:has(tbody tr)").dataTable($.extend(true, {}, dataTablesDefaults, {
13         "sDom": 't',
14         "aoColumnDefs": [
15             { "bSortable": false, "bSearchable": false, 'aTargets': [ 'nosort' ] }
16         ],
17         "bPaginate": false
18     }));
19     [% IF no_op_set %]
20       $('#branch').change(function() {
21             $('#op').val("");
22             $('#selectlibrary').submit();
23       });
24       $('#newnotice').click(function() {
25             $('#op').val("add_form");
26             return true;
27       });
28     [% END %]
29
30     $("#submit_form").click( function(event) {
31         event.preventDefault();
32         var at_least_one_exists = 0;
33         var are_valid = 1;
34         $("fieldset.mtt").each( function(){
35             var title = $(this).find('input[name="title"]').val();
36             var content = $(this).find('textarea[name="content"]').val();
37             if (
38                     ( title.length == 0 && content.length > 0 )
39                  || ( title.length > 0 && content.length == 0 )
40             ) {
41                 var mtt = $(this).find('input[name="message_transport_type"]').val();
42                 var msg = _("Please specify title and content for %s");
43                 msg = msg.replace( "%s", mtt );
44                 at_least_one_exists = 1;
45                 alert(msg);
46                 return are_valid = false;
47             } else if ( title.length > 0 && content.length > 0 ) {
48                 at_least_one_exists = 1;
49             }
50         } );
51         if ( ! at_least_one_exists ) {
52             alert( _("Please fill at least one template.") );
53             return false;
54         }
55         if ( ! are_valid ) {
56             return false;
57         }
58
59         // Test if code already exists in DB
60         var new_lettercode = $("#code").val();
61         var new_branchcode = $("#branch").val();
62         [% IF ( add_form and code ) # IF edit %]
63           if ( new_lettercode != '[% code %]' ) {
64         [% END %]
65           $.ajax({
66             data: { code: new_lettercode, branchcode: new_branchcode },
67             type: 'GET',
68             url: '/cgi-bin/koha/svc/letters/',
69             success: function (data) {
70               if ( data.letters.length > 0 ) {
71                 if( new_branchcode == '' ) {
72                     alert( _("A default letter with the code '%s' already exists.").format(new_lettercode) );
73                 } else {
74                     alert( _("A letter with the code '%s' already exists for '%s'.").format(new_lettercode, new_branchcode) );
75                 }
76                 return false;
77               } else {
78                 $("#add_notice").submit();
79               }
80             },
81           });
82         [% IF ( add_form and code ) %]
83           } else {
84             $("#add_notice").submit();
85           }
86         [% END %]
87     });
88
89     var sms_limit = 160;
90     $("#content_sms").on("keyup", function(){
91         var length = $(this).val().length;
92         $("#sms_counter").html(length + "/" + sms_limit + _(" characters"));
93         if ( length  > sms_limit ) {
94             $("#sms_counter").css("color", "red");
95         } else {
96             $("#sms_counter").css("color", "black");
97         }
98     });
99     $( "#transport-types" ).accordion({ collapsible: true, active:false, animate: 200 });
100     $(".insert").on("click",function(){
101         var containerid = $(this).data("containerid");
102         insertValueQuery( containerid );
103     })
104 });
105 [% IF add_form or copy_form %]
106         
107     function cancel(f) {
108         $('#op').val("");
109         f.method = "get";
110         f.submit();
111     }
112
113                 function isNotNull(f,noalert) {
114                         if (f.value.length ==0) {
115         return false;
116                         }
117                         return true;
118                 }
119
120                 function isNum(v,maybenull) {
121                 var n = new Number(v.value);
122                 if (isNaN(n)) {
123                         return false;
124                         }
125                 if (maybenull==0 && v.value=='') {
126                         return false;
127                 }
128                 return true;
129                 }
130         function insertValueQuery(mtt_id) {
131             var fieldset = $("#" + mtt_id);
132             var myQuery = $(fieldset).find('textarea[name="content"]');
133             var myListBox = $(fieldset).find('select[name="SQLfieldname"]');
134
135             if($(myListBox).find('option').length > 0) {
136                 $(myListBox).find('option').each( function (){
137                     if ( $(this).attr('selected') && $(this).val().length > 0 ) {
138                         $(myQuery).insertAtCaret("<<" + $(this).val() + ">>");
139                     }
140                 });
141             }
142         }
143         [% END %]
144                 //]]>
145                 </script>
146 </head>
147 <body id="tools_letter" class="tools">
148 [% INCLUDE 'header.inc' %]
149 [% INCLUDE 'letters-search.inc' %]
150
151 <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; [% IF ( add_form or copy_form) %][% IF ( modify ) %]<a href="/cgi-bin/koha/tools/letter.pl">Notices &amp; Slips</a> &rsaquo; Modify notice[% ELSE %] <a href="/cgi-bin/koha/tools/letter.pl">Notices &amp; Slips</a> &rsaquo; Add notice[% END %][% ELSE %][% IF ( add_validate or copy_validate) %] <a href="/cgi-bin/koha/tools/letter.pl">Notices &amp; Slips</a> &rsaquo; Notice added[% ELSE %][% IF ( delete_confirm ) %] <a href="/cgi-bin/koha/tools/letter.pl">Notices &amp; Slips</a> &rsaquo; Confirm deletion[% ELSE %]Notices &amp; Slips[% END %][% END %][% END %]</div>
152
153 [% IF add_form or copy_form %]<div id="doc" class="yui-t7">[% ELSE %]<div id="doc3" class="yui-t2">[% END %]
154    
155    <div id="bd">
156         <div id="yui-main">
157         <div class="yui-b">
158
159 [% IF ( no_op_set ) %]
160     <h1>Notices and Slips</h1>
161     <form method="get" action="/cgi-bin/koha/tools/letter.pl" id="selectlibrary">
162       <input type="hidden" name="searchfield" value="[% searchfield %]" />
163     [% UNLESS independant_branch %]
164       <p>
165         Select a library :
166             <select name="branchcode" id="branch" style="width:20em;">
167                 <option value="*">All libraries</option>
168             [% FOREACH branchloo IN branchloop %]
169                 [% IF ( branchloo.selected ) %]<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>[% ELSE %]<option value="[% branchloo.value %]">[% branchloo.branchname %]</option>[% END %]
170             [% END %]
171             </select>
172       </p>
173     [% END %]
174       <div id="toolbar" class="btn-toolbar">
175           <button type="submit" class="btn btn-small" id="newnotice"><i class="fa fa-plus"></i> New notice</button>
176         <input type="hidden" id="op" name="op" />
177       </div>
178     </form>
179
180                 [% IF ( search ) %]
181         <p>You searched for <b>[% searchfield %]</b></p>
182                 [% END %]
183                 [% IF ( letter && !independant_branch) %]
184             [% select_for_copy = BLOCK %]
185             <select name="branchcode">
186                 [% FOREACH branchloo IN branchloop %]
187                 <option value="[% branchloo.value %]">Copy to [% branchloo.branchname %]</option>
188                 [% END %]
189             </select>
190             [% END %]
191         [% END %]
192         [% IF letter %]
193           <table id="lettert">
194             <thead>
195               <tr>
196                 <th>Library</th>
197                 <th>Module</th>
198                 <th>Code</th>
199                 <th>Name</th>
200                 <th class="nosort">Copy notice</th>
201                 <th class="nosort">Actions</th>
202               </tr>
203             </thead>
204             <tbody>
205               [% FOREACH lette IN letter %]
206                 [% can_edit = lette.branchcode || !independant_branch %]
207                 <tr>
208                   <td>[% IF lette.branchname %][% lette.branchname %][% ELSE %](All libraries)[% END %]</td>
209                   <td>[% lette.module %]</td>
210                   <td>[% lette.code %]</td>
211                   <td>[% lette.name %]</td>
212                   <td class="actions">
213                     [% IF !independant_branch || !lette.branchcode %]
214                       <form method="post" action="/cgi-bin/koha/tools/letter.pl">
215                         <input type="hidden" name="op" value="copy_form" />
216                         <input type="hidden" name="oldbranchcode" value="[% lette.branchcode %]" />
217                         <input type="hidden" name="module" value="[% lette.module %]" />
218                         <input type="hidden" name="code" value="[% lette.code %]" />
219                         [% IF independant_branch %]
220                           <input type="hidden" name="branchcode" value="[% independant_branch %]" />
221                         [% ELSE %]
222                           [% select_for_copy %]
223                         [% END %]
224                         <button class="btn btn-mini"><i class="fa fa-clone"></i> Copy</button>
225                       </form>
226                     [% END %]
227                   </td>
228                   <td class="actions">
229                     [% IF can_edit %]
230                       <a class="btn btn-mini" href="/cgi-bin/koha/tools/letter.pl?op=add_form&amp;branchcode=[% lette.branchcode %]&amp;module=[% lette.module %]&amp;code=[% lette.code %]"><i class="fa fa-pencil"></i> Edit</a>
231                     [% END %]
232                     [% IF !lette.protected && can_edit %]
233                       <a class="btn btn-mini" href="/cgi-bin/koha/tools/letter.pl?op=delete_confirm&amp;branchcode=[%lette.branchcode %]&amp;module=[% lette.module %]&amp;code=[% lette.code %]"><i class="fa fa-trash"></i> Delete</a>
234                     [% END %]
235                   </td>
236                 </tr>
237               [% END %]
238             </tbody>
239           </table>
240         [% ELSE %]
241           <div class="dialog message">
242           [% IF ( branchcode ) %]
243              <p>There are no notices for this library.</p>
244           [% ELSE %]
245               <p>There are no notices.</p>
246           [% END %]
247           </div>
248         [% END %]
249 [% END %]
250
251         
252 [% IF add_form or copy_form %]
253 <h1>[% IF ( modify ) %]Modify notice[% ELSE %]Add notice[% END %]</h1>
254         <form id="add_notice" name="Aform" method="post" enctype="multipart/form-data" class="validate">
255         [% IF add_form %]
256           <input type="hidden" name="op" id="op" value="add_validate" />
257         [% ELSE %]
258           <input type="hidden" name="op" id="op" value="copy_validate" />
259         [% END %]
260
261                 <input type="hidden" name="checked" value="0" />
262                 [% IF ( modify ) %]
263                 <input type="hidden" name="add" value="0" />
264                 [% ELSE %]
265                 <input type="hidden" name="add" value="1" />
266                 [% END %]
267                 <fieldset class="rows">
268             <input type="hidden" name="oldbranchcode" value="[% oldbranchcode %]" />
269             <ol>
270             [% IF independant_branch %]
271                 <input type="hidden" name="branchcode" value="[% independant_branch %]" />
272             [% ELSE %]
273             <li>
274
275                 [% IF adding %]
276                     <label for="branch">Library:</label>
277                     <select name="branchcode" id="branch" style="width:20em;">
278                         <option value="">All libraries</option>
279                     [% FOREACH branchloo IN branchloop %]
280                         [% IF ( branchloo.selected ) %]<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>[% ELSE %]<option value="[% branchloo.value %]">[% branchloo.branchname %]</option>[% END %]
281                     [% END %]
282                     </select>
283                 [% ELSE %]
284                     <span class="label">Library:</span>
285                     <input type="hidden" id="branch" name="branchcode" value="[% branchcode %]" />
286                     [% IF ( branchcode ) %]
287                        [% Branches.GetName( branchcode ) %]
288                     [% ELSE %]
289                         All libraries
290                     [% END %]
291                 [% END %]
292             </li>
293             [% END %]
294                         <li>
295                                 <label for="module">Koha module:</label>
296                                 <input type="hidden" name="oldmodule" value="[% module %]" />
297                 [% IF adding  %]
298                   <select name="module" id="module" onchange="javascript:window.location.href = unescape(window.location.pathname)+'?op=add_form&amp;module='+this.value+'&amp;content='+window.document.forms['Aform'].elements['content'].value;">
299                 [% ELSE %]
300                   <select name="module" id="module">
301                 [% END %]
302                                     [% IF ( module == "acquisition" ) %]
303                                       <option value="acquisition" selected="selected">Acquisition</option>
304                                     [% ELSE %]
305                                       <option value="acquisition" >Acquisition</option>
306                                     [% END %]
307                                     [% IF ( module == "catalogue" ) %]
308                                       <option value="catalogue" selected="selected">Catalog</option>
309                                     [% ELSE %]
310                                       <option value="catalogue" >Catalog</option>
311                                     [% END %]
312                                     [% IF ( module == "circulation" ) %]
313                                       <option value="circulation" selected="selected">Circulation</option>
314                                     [% ELSE %]
315                                       <option value="circulation">Circulation</option>
316                                     [% END %]
317                                     [% IF ( module == "claimacquisition" ) %]
318                                       <option value="claimacquisition" selected="selected">Claim acquisition</option>
319                                     [% ELSE %]
320                                       <option value="claimacquisition">Claim acquisition</option>
321                                     [% END %]
322                                     [% IF ( module == "claimissues" ) %]
323                                       <option value="claimissues" selected="selected">Claim serial issue</option>
324                                     [% ELSE %]
325                                       <option value="claimissues">Claim serial issue</option>
326                                     [% END %]
327                                     [% IF ( module == "reserves" ) %]
328                                       <option value="reserves" selected="selected">Holds</option>
329                                     [% ELSE %]
330                                       <option value="reserves">Holds</option>
331                                     [% END %]
332                                     [% IF ( module == "members" ) %]
333                                       <option value="members" selected="selected">Members</option>
334                                     [% ELSE %]
335                                       <option value="members">Members</option>
336                                     [% END %]
337                                     [% IF ( module == "serial" ) %]
338                                       <option value="serial" selected="selected">Serials (routing list)</option>
339                                     [% ELSE %]
340                                       <option value="serial">Serials (routing list)</option>
341                                     [% END %]
342                                     [% IF ( module == "suggestions" ) %]
343                                       <option value="suggestions" selected="selected">Suggestions</option>
344                                     [% ELSE %]
345                                       <option value="suggestions">Suggestions</option>
346                                     [% END %]
347                 </select>
348             </li>
349             <li>
350               [% IF adding %]
351                   <label for="code" class="required">Code:</label>
352                   <input type="text" id="code" name="code" size="20" maxlength="20" value="" required="required"/>
353                   <span class="required">Required</span>
354               [% ELSE %]
355                   <span class="label">Code:</span>
356                   <input type="hidden" id="code" name="code" value="[% code %]" />
357                   [% code %]
358               [% END %]
359             </li>
360             <li>
361               <label for="name" class="required">Name:</label>
362               <input type="text" id="name" name="name" size="60" value="[% letter_name %]" required="required" />
363               <span class="required">Required</span>
364             </li>
365         </ol>
366     </fieldset>
367         <div id="transport-types" style="clear:both">
368         [% FOREACH letter IN letters %]
369             <h3>
370                 [% SWITCH letter.message_transport_type %]
371                 [% CASE 'email' %]
372                   Email
373                 [% CASE 'print' %]
374                   Print
375                 [% CASE 'sms' %]
376                   SMS
377                 [% CASE 'feed' %]
378                   Feed
379                 [% CASE 'phone' %]
380                   Phone
381                 [% CASE %]
382                   [% letter.message_transport_type %]
383                 [% END %]
384             </h3>
385             [% IF letter.message_transport_type == "sms" and not Koha.Preference("SMSSendDriver") %]
386               <fieldset class="rows mtt" id="[% letter.message_transport_type %]" disabled="disabled">
387                 <div class="dialog message">You should enable the SMSSendDriver preference to use the SMS templates.</div>
388             [% ELSIF letter.message_transport_type == "phone" and not Koha.Preference("TalkingTechItivaPhoneNotification") %]
389               <fieldset class="rows mtt" id="[% letter.message_transport_type %]" disabled="disabled">
390                 <div class="dialog message">You should enable the TalkingTechItivaPhoneNotification preference to use the phone templates.</div>
391             [% ELSE %]
392               <fieldset class="rows mtt" id="[% letter.message_transport_type %]">
393             [% END %]
394               <ol>
395                 <li>
396                   <input type="hidden" name="message_transport_type" value="[% letter.message_transport_type %]" />
397                   <label for="is_html_[% letter.message_transport_type %]">HTML message:</label>
398                   [% IF letter.is_html %]
399                     <input type="checkbox" name="is_html_[% letter.message_transport_type %]" id="is_html_[% letter.message_transport_type %]" value="1" checked="checked" />
400                   [% ELSE %]
401                     <input type="checkbox" name="is_html_[% letter.message_transport_type %]" id="is_html_[% letter.message_transport_type %]" value="1" />
402                   [% END %]
403                 </li>
404                 <li>
405                   <label for="title_[% letter.message_transport_type %]">Message subject:</label><input type="text" id="title_[% letter.message_transport_type %]" name="title" size="60" value="[% letter.title %]" />
406                 </li>
407                 <li>
408                   <label for="SQLfieldname_[% letter.message_transport_type %]">Message body:</label>
409                   [% IF letter.message_transport_type == 'sms' %]
410                     <span id="sms_counter">[% IF letter.content && letter.content.length > 0 %][% letter.content.length %][% ELSE %]0[% END %]/160 characters</span>
411                   [% END %]
412                   <table>
413                     <tr>
414                       <td>
415                         <select name="SQLfieldname" id="SQLfieldname_[% letter.message_transport_type %]" multiple="multiple" size="9">
416                           [% FOREACH SQLfieldname IN SQLfieldnames %]
417                             <option value="[% SQLfieldname.value %]">[% SQLfieldname.text %]</option>
418                           [% END %]
419                         </select>
420                       </td>
421                         <td class="actions">
422                             <button type="button" data-containerid="[% letter.message_transport_type %]" class="btn btn-small insert">Insert <i class="fa fa-long-arrow-right"></i></button>
423                         </td>
424                       <td><textarea name="content" id="content_[% letter.message_transport_type %]" cols="80" rows="15">[% letter.content %]</textarea></td>
425                     </tr>
426                   </table>
427                 </li>
428               </ol>
429             </fieldset>
430         [% END %]
431         </div> <!-- / #transport-types -->
432
433         [% IF code.search('DGST') %] <span class="overdue">Warning, this is a template for a Digest, as such, any references to branch data ( e.g. branches.branchname ) will refer to the borrower's home branch.</span> [% END %]
434         <fieldset class="action"><input type="submit" id="submit_form" value="Submit" class="button" /> <a class="cancel" href="/cgi-bin/koha/tools/letter.pl">Cancel</a></fieldset>
435       <input type="hidden" name="searchfield" value="[% searchfield %]" />
436     </form>
437 [% END %]
438
439 [% IF ( add_validate or copy_validate) %]
440         Data recorded
441         <form action="[% action %]" method="post">
442         <input type="submit" value="OK" />
443         </form>
444 [% END %]
445
446 [% IF ( delete_confirm ) %]
447     <div class="dialog alert">
448         <h3>Delete notice?</h3>
449         <table>
450             <thead>
451             <tr>
452                 <th>Library</th>
453                 <th>Module</th>
454                 <th>Code</th>
455                 <th>Name</th>
456             </tr>
457             </thead>
458             <tr>
459                 <td>[% IF letter.branchcode %][% Branches.GetName( letter.branchcode ) %][% ELSE %](All libraries)[% END %]</td>
460                 <td>[% letter.module %]</td>
461                 <td>[% letter.code %]</td>
462                 <td>[% letter.name %]</td>
463             </tr>
464         </table>
465             <form action="[% action %]" method="post">
466             <input type="hidden" name="op" value="delete_confirmed">
467             <input type="hidden" name="branchcode" value="[% letter.branchcode %]" />
468             <input type="hidden" name="code" value="[% letter.code %]" />
469             <input type="hidden" name="module" value="[% letter.module %]" />
470             <button type="submit" class="approve"><i class="fa fa-check"></i> Yes, delete</button>
471         </form>
472
473         <form action="[% action %]" method="get">
474             <button type="submit" class="deny"><i class="fa fa-times"></i> No, do not delete</button>
475         </form>
476     </div>
477 [% END %]
478
479 [% IF ( delete_confirmed ) %]
480         Data deleted
481         <form action="[% action %]" method="post">
482         <input type="submit" value="OK" />
483         </form>
484 [% END %]
485
486 </div>
487 </div>
488 [% UNLESS add_form or copy_form %]
489     <div class="yui-b noprint">
490         [% INCLUDE 'tools-menu.inc' %]
491     </div>
492 [% END %]
493 </div>
494 [% INCLUDE 'intranet-bottom.inc' %]