Bug 8375: (follow-up) adjust StrWidth to account for TTF fonts
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / categorie.tt
1 [% USE KohaDates -%]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Administration &rsaquo; Patron categories &rsaquo; [% IF ( add_form ) %][% IF ( categorycode ) %]Modify category '[% categorycode |html %]'[% ELSE %]New category[% END %][% END %]
4 [% IF ( add_validate ) %]Data recorded[% END %]
5 [% IF ( delete_confirm ) %][% IF ( totalgtzero ) %]Cannot delete: category [% categorycode |html %] in use[% ELSE %]Confirm deletion of category '[% categorycode |html %]'[% END %][% END %]
6 [% IF ( delete_confirmed ) %]Category deleted[% END %]</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 [% INCLUDE 'calendar.inc' %]
9 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
10 [% INCLUDE 'datatables.inc' %]
11 <script type="text/javascript" id="js">
12 //<![CDATA[
13     $(document).ready(function() {
14         $("#table_categorie").dataTable($.extend(true, {}, dataTablesDefaults, {
15             "aoColumnDefs": [
16                 { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
17                 { "aTargets": [ 3,4,5 ], "sType": "natural" },
18             ],
19             "aaSorting": [[ 1, "asc" ]],
20             "sPaginationType": "four_button"
21         }));
22
23     $( "#enrolmentperioddate" ).datepicker({ minDate: 1 }); // Require that "until date" be in the future
24
25     if ( $("#branches option:selected").length < 1 ) {
26         $("#branches option:first").attr("selected", "selected");
27     }
28 });
29         function isNotNull(f,noalert) {
30                 if (f.value.length ==0) {
31    return false;
32                 }
33                 return true;
34         }
35         //
36         function isNum(v,maybenull) {
37         var n = new Number(v.value);
38         if (isNaN(n)) {
39                 return false;
40                 }
41         if (maybenull==0 && v.value=='') {
42                 return false;
43         }
44         return true;
45         }
46         // to check if the data are correctly entered.
47         function Check(ff) {
48             var ok=0;
49                 var _alertString=_("Form not submitted because of the following problem(s)");
50                 _alertString +="\n-------------------------------------------------------------------\n\n";
51                 ff.categorycode.value = ff.categorycode.value.trim();
52                 if (ff.categorycode.value.length==0) {
53                    ok=1;
54                    _alertString += _("- categorycode missing") + "\n";
55                 }
56                 else{
57                    var patt=/^[a-zA-Z0-9\-_]+$/g;
58                    if ( !patt.test(ff.categorycode.value) ) {
59                       ok=1;
60                       _alertString += _("- category code can only contain the following characters: letters, numbers, - and _") + "\n";
61                    }
62                 }
63                 if (!(ff.category_type.value)){
64                     ok=1;
65                     _alertString += _("- category type missing") + "\n";
66                 }
67                 if (!(isNotNull(ff.description,1))) {
68                     ok=1;
69                         _alertString += _("- description missing") + "\n";
70                 }
71                 if (!isNum(ff.upperagelimit,0) && ff.category_type.value=='C') {
72                     ok=1;
73                         _alertString += _("- upperagelimit is not a number") + "\n";
74                                 
75                 }
76                 if(!(ff.enrolmentperioddate.value || ff.enrolmentperiod.value)) {
77                     ok=1;
78                     _alertString += _("- either Enrollment period or Until date must be provided") + "\n";
79                 }
80                 if(ff.enrolmentperioddate.value && ff.enrolmentperiod.value){
81                         document.getElementById('enrolmentmessage').className = "error";
82                         return false;
83                 }
84                 
85                 if (ok) { // if there is a problem
86                     alert(_alertString);
87                     return false;
88                 }
89                 // if all is good
90                 ff.submit();
91         }
92         //]]>
93 </script>
94 <style type="text/css">#enrolmentmessage.hint { display : none; }</style>
95 </head>
96 <body id="admin_categorie" class="admin">
97 [% INCLUDE 'header.inc' %]
98 [% INCLUDE 'patrons-admin-search.inc' %]
99
100 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo; [% IF ( add_form ) %] <a href="/cgi-bin/koha/admin/categorie.pl">Patron categories</a> &rsaquo; [% IF ( categorycode ) %]Modify category '[% categorycode |html %]'[% ELSE %]New category[% END %][% END %]
101 [% IF ( add_validate ) %] <a href="/cgi-bin/koha/admin/categorie.pl">Patron categories</a> &rsaquo; Data recorded[% END %]
102 [% IF ( delete_confirm ) %] <a href="/cgi-bin/koha/admin/categorie.pl">Patron categories</a> &rsaquo; [% IF ( totalgtzero ) %]Cannot delete: Category [% categorycode |html %] in use[% ELSE %]Confirm deletion of category '[% categorycode |html %]'[% END %][% END %]
103 [% IF ( delete_confirmed ) %] <a href="/cgi-bin/koha/admin/categorie.pl">Patron categories</a> &rsaquo; Category deleted[% END %]
104 [% IF ( else ) %]Patron categories[% END %]</div>
105
106 <div id="doc3" class="yui-t2">
107    
108    <div id="bd">
109         <div id="yui-main">
110         <div class="yui-b">
111
112 [% IF ( add_form ) %]
113         
114
115
116         
117         <form name="Aform" action="[% script_name %]" method="post">
118         <input type="hidden" name="op" value="add_validate" />
119         <input type="hidden" name="checked" value="0" />
120 [% IF ( categorycode ) %]
121                 <h1>Modify category [% categorycode |html %]</h1>
122         [% ELSE %]
123                 <h1>New category</h1>
124         [% END %]
125         <fieldset class="rows">
126         <ol>[% IF ( categorycode ) %]
127     <li><span class="label">Category code: </span>[% categorycode |html %]
128                                 <input type="hidden" name="categorycode" value="[% categorycode |html %]" /><input type="hidden" name="is_a_modif" value="1" /></li>
129         [% ELSE %]
130     <li><label for="categorycode" class="required">Category code: </label> <input type="text" name="categorycode" id="categorycode" size="10" maxlength="10" onblur="toUC(this)" /></li>
131         [% END %]
132     <li><label for="description" class="required">Description: </label> <input type="text" name="description" id="description" size="40" maxlength="80" value="[% description |html %]" /></li>
133     <li><label for="enrolmentperiod" class="required">Enrollment period: </label>
134         <fieldset>
135         <legend>Choose one</legend>
136         <ol>
137         <li><label for="enrolmentperiod" style="width:6em;">In months: </label>
138                 <input type="text" name="enrolmentperiod" id="enrolmentperiod" size="3" maxlength="3" value="[% IF ( enrolmentperiod ) %][% enrolmentperiod %][% END %]" /> months</li>
139         <li><label for="enrolmentperioddate" style="width:6em;">Until date: </label>
140         <input type="text" name="enrolmentperioddate" id="enrolmentperioddate" value="[% enrolmentperioddate | $KohaDates %]" />
141                 <div id="enrolmentmessage" class="hint" style="margin-left:0;">Cannot have "months" and "until date" at the same time</div>
142         </li>
143         </ol>
144         </fieldset>
145         </li>
146         <li><label for="dateofbirthrequired">Age required: </label> <input type="text" name="dateofbirthrequired" id="dateofbirthrequired" value="[% dateofbirthrequired %]" size="3" maxlength="3" /> years</li>
147         <li><label for="upperagelimit">Upperage limit: </label> <input type="text" name="upperagelimit" id="upperagelimit" size="3" maxlength="3" value="[% upperagelimit %]" /> years</li>
148         <li><label for="enrolmentfee">Enrollment fee: </label><input type="text" name="enrolmentfee" id="enrolmentfee" size="6" value="[% enrolmentfee %]" /></li>
149         <li><label for="overduenoticerequired">Overdue notice required: </label> <select name="overduenoticerequired" id="overduenoticerequired">
150                         [% IF ( overduenoticerequired ) %]
151                                                 <option value="0">No</option>
152                                                 <option value="1" selected="selected">Yes</option>
153                         [% ELSE %]
154                                                 <option value="0" selected="selected">No</option>
155                                                 <option value="1">Yes</option>
156                         [% END %]
157                                         </select></li>
158     <li><label for="hidelostitems">Lost items in staff client: </label> <select name="hidelostitems" id="hidelostitems">
159                         [% IF ( hidelostitems ) %]
160                                                 <option value="0">Shown</option>
161                                                 <option value="1" selected="selected">Hidden by default</option>
162                         [% ELSE %]
163                                                 <option value="0" selected="selected">Shown</option>
164                                                 <option value="1">Hidden by default</option>
165                         [% END %]
166                                         </select></li>
167         <li><label for="reservefee">Hold fee: </label><input type="text" name="reservefee" id="reservefee" size="6" value="[% reservefee %]" /></li>
168     <li><label for="category_type" class="required">Category type: </label> <select name="category_type" id="category_type">
169                         [% IF ( type_n ) %]<option value="" selected="selected">Select a category type</option>[% ELSE %]<option value="">Select a category type</option>[% END %]
170                                         [% IF ( type_A ) %]<option value="A" selected="selected">Adult</option>[% ELSE %]<option value="A">Adult</option>[% END %]
171                                         [% IF ( type_C ) %]<option value="C" selected="selected">Child</option>[% ELSE %]<option value="C">Child</option>[% END %]
172                                         [% IF ( type_S ) %]<option value="S" selected="selected">Staff</option>[% ELSE %]<option value="S">Staff</option>[% END %]
173                                         [% IF ( type_I ) %]<option value="I" selected="selected">Organization</option>[% ELSE %]<option value="I">Organization</option>[% END %]
174                                         [% IF ( type_P ) %]<option value="P" selected="selected">Professional</option>[% ELSE %]<option value="P">Professional</option>[% END %]
175                                         [% IF ( type_X ) %]<option value="X" selected="selected">Statistical</option>[% ELSE %]<option value="X">Statistical</option>[% END %]
176                                         </select>
177     </li>
178     <li><label for="branches">Branches limitation: </label>
179         <select id="branches" name="branches" multiple size="10">
180             <option value="">All branches</option>
181             [% FOREACH branch IN branches_loop %]
182               [% IF ( branch.selected ) %]
183                 <option selected="selected" value="[% branch.branchcode %]">[% branch.branchname %]</option>
184               [% ELSE %]
185                 <option value="[% branch.branchcode %]">[% branch.branchname %]</option>
186               [% END %]
187             [% END %]
188         </select>
189         <span>Select All if this category type must to be displayed all the time. Otherwise select librairies you want to associate with this value.
190         </span>
191     </li>
192     <li><label for="block_expired">Block expired patrons</label>
193         <select name="block_expired" id="block_expired">
194             [% IF ( BlockExpiredPatronOpacActions == -1  ) %]
195                 <option value="-1" selected="selected"> Follow system preference BlockExpiredPatronOpacActions </option>
196             [% ELSE %]
197                 <option value="-1"> Follow system preference BlockExpiredPatronOpacActions </option>
198             [% END %]
199
200             [% IF ( BlockExpiredPatronOpacActions == 1   ) %]
201                 <option value="1" selected="selected"> Block </option>
202             [% ELSE %]
203                 <option value="1"> Block </option>
204             [% END %]
205
206             [% IF ( BlockExpiredPatronOpacActions == 0   ) %]
207                 <option value="0" selected="selected"> Don't block </option>
208             [% ELSE %]
209                 <option value="0"> Don't block </option>
210             [% END %]
211         </select>
212         <span>
213             Choose whether patrons of this category be blocked from public catalog actions such as renewing and placing holds when their cards have expired.   
214         </span>
215     </li>
216     </ol>
217 </fieldset>
218
219     [% IF ( EnhancedMessagingPreferences ) %]
220       <fieldset class="rows">
221         <h4>Default messaging preferences for this patron category</h4>
222         [% INCLUDE 'messaging-preference-form.inc' %]
223       </fieldset>
224     [% END %]
225         <fieldset class="action"><input type="button" value="Save" onclick="Check(this.form);" /> </fieldset>
226         </form>
227
228 [% END %]
229
230 [% IF ( add_validate ) %]
231 <h3>Data recorded</h3>
232         <form action="[% script_name %]" method="post">
233                 <input type="submit" value="OK" />
234         </form>
235
236 [% END %]
237
238 [% IF ( delete_confirm ) %]
239         
240         <form action="[% script_name %]" method="post">
241         <fieldset><legend>      
242         [% IF ( totalgtzero ) %]
243         Category [% categorycode |html %] is in use.  Deletion not possible![% ELSE %]
244 Confirm deletion of category [% categorycode |html %][% END %]</legend>
245
246 [% IF ( totalgtzero ) %]<div class="dialog alert"><strong>This category is used [% total %] times</strong>. Deletion not possible</div>[% END %]
247         <table>
248         <tr><th scope="row">Category code: </th><td>[% categorycode |html %]</td></tr>
249         <tr><th scope="row">Description: </th><td>[% description |html %]</td></tr>
250         <tr><th scope="row">Enrollment period: </th>
251                 <td>
252                         [% IF ( enrolmentperiod ) %]
253                                 [% enrolmentperiod %] months
254                         [% ELSE %]
255                                 until [% enrolmentperioddate | $KohaDates %]
256                         [% END %]
257                 </td>
258         </tr>
259         <tr><th scope="row">Age required: </th><td>[% dateofbirthrequired %] years</td></tr>
260         <tr><th scope="row">Upperage limit: </th><td>[% upperagelimit %] years</td></tr>
261         <tr><th scope="row">Enrollment fee: </th><td>[% enrolmentfee %]</td></tr>
262         <tr><th scope="row">Receives overdue notices: </th><td>[% IF ( overduenoticerequired ) %]Yes[% ELSE %]No[% END %]</td></tr>
263         <tr><th scope="row">Lost items in staff client</th><td>[% IF ( hidelostitems ) %]Hidden by default[% ELSE %]Shown[% END %]</td></tr>
264         <tr><th scope="row">Hold fee: </th><td>[% reservefee %]</td></tr>
265 </table>
266                 <fieldset class="action">[% IF ( totalgtzero ) %]
267 <input type="submit" value="OK" /></form>
268                 [% ELSE %]
269                         <input type="hidden" name="op" value="delete_confirmed" />
270             <input type="hidden" name="categorycode" value="[% categorycode |html %]" /> <input type="submit" value="Delete this category" /> <a class="cancel" href="/cgi-bin/koha/admin/categorie.pl">Cancel</a>
271                 [% END %]</fieldset></fieldset></form>
272 [% END %]
273
274 [% IF ( delete_confirmed ) %]
275 <h3>Category deleted</h3>
276
277         <form action="[% script_name %]" method="post">
278         <input type="submit" value="OK" />
279         </form>
280 [% END %]
281
282 [% IF ( else ) %]
283
284 <div id="toolbar" class="btn-toolbar">
285     <a class="btn btn-small" id="newcategory" href="/cgi-bin/koha/admin/categorie.pl?op=add_form"><i class="icon-plus"></i> New category</a>
286 </div>
287
288 <h2>Patron category administration</h2>
289 [% IF ( searchfield ) %]
290                 You Searched for [% searchfield %]</span>
291         [% END %]
292 [% IF ( loop ) %]
293 <div id="pagertable_categorie">
294 </div>
295         <table id="table_categorie">
296                 <thead>
297         <tr>
298                         <th scope="col">Code</th>
299                         <th scope="col">Category name</th>
300                         <th scope="col">Type</th>
301                         <th scope="col">Enrollment period</th>
302                         <th scope="col">Age required</th>
303                         <th scope="col">Upper age limit</th>
304                         <th scope="col">Enrollment fee</th>
305                         <th scope="col">Overdue</th>
306             <th scope="col">Lost items</th>
307                         <th scope="col">Hold fee</th>
308             [% IF ( EnhancedMessagingPreferences ) %]
309             <th scope="col">Messaging</th>
310             [% END %]
311             <th scope="col">Branches limitations</th>
312             <th scope="col">&nbsp; </th>
313             <th scope="col">&nbsp; </th>
314         </tr>
315                 </thead>
316         <tbody>
317                 [% FOREACH loo IN loop %]
318                         <tr>
319                         <td>[% loo.categorycode |html %]</td>
320                         <td>
321                             <a href="[% loo.script_name %]?op=add_form&amp;categorycode=[% loo.categorycode |uri %]">[% loo.description |html %]</a>
322                         </td>
323                         <td>
324                             [% IF ( loo.type_A ) %]Adult[% END %]
325                             [% IF ( loo.type_C ) %]Child[% END %]
326                             [% IF ( loo.type_P ) %]Prof.[% END %]
327                             [% IF ( loo.type_I ) %]Org.[% END %]
328                             [% IF ( loo.type_S ) %]Staff[% END %]
329                             [% IF ( loo.type_X ) %]Statistical[% END %]
330                         </td>
331                         <td>
332                                 [% IF ( loo.enrolmentperiod ) %]
333                                         [% loo.enrolmentperiod %] months
334                                 [% ELSE %]
335                                         until [% loo.enrolmentperioddate | $KohaDates %]
336                                 [% END %]
337                         
338                         </td>
339                         <td>[% loo.dateofbirthrequired %] years</td>
340                         <td>[% loo.upperagelimit %] years</td>
341                         <td>[% loo.enrolmentfee %]</td>
342                         <td>[% IF ( loo.overduenoticerequired ) %]Yes[% ELSE %]No[% END %]</td>
343                         <td>[% IF ( loo.hidelostitems ) %]Hidden[% ELSE %]Shown[% END %]</td>
344                         <td>[% loo.reservefee %]</td>
345                         [% IF ( EnhancedMessagingPreferences ) %]
346                         <td style="white-space: nowrap; font-size:80%;">
347                             [% IF ( loo.messaging_prefs ) %]
348                               [% FOREACH prefs IN loo.messaging_prefs %]
349                                         [% FOREACH transport IN prefs.transports %]
350                                          [% IF ( transport.transport ) %]
351                                             [% IF ( prefs.Item_Due ) %]Item due
352                                             [% ELSIF ( prefs.Advance_Notice ) %]Advance notice
353                                             [% ELSIF ( prefs.Upcoming_Events ) %]Upcoming events
354                                             [% ELSIF ( prefs.Hold_Filled ) %]Hold filled
355                                             [% ELSIF ( prefs.Item_Check_in ) %]Item check-in
356                                             [% ELSIF ( prefs.Item_Checkout ) %]Item checkout
357                                                         [% ELSE %]Unknown
358                                                         [% END %]:
359                                                             <strong>[% transport.transport %]</strong><br />
360                                                          [% ELSE %]None<br />[% END %]
361                                         [% END %]
362                                 [% END %]
363                             [% ELSE %]
364                                 None
365                             [% END %]
366                         </td>
367                         [% END %]
368                         <td>
369                             [% IF loo.branches.size > 0 %]
370                                 [% branches_str = "" %]
371                                 [% FOREACH branch IN loo.branches %]
372                                     [% branches_str = branches_str _ " " _ branch.branchname _ "(" _ branch.branchcode _ ")" %]
373                                 [% END %]
374                                 <span title="[% branches_str %]">
375                                     [% IF loo.branches.size > 1 %]
376                                         [% loo.branches.size %] branches limitations
377                                     [% ELSE %]
378                                         [% loo.branches.size %] branch limitation
379                                     [% END %]
380                                 </span>
381                             [% ELSE %]
382                                 No limitation
383                             [% END %]
384                         </td>
385                         <td><a href="[% loo.script_name %]?op=add_form&amp;categorycode=[% loo.categorycode |uri %]">Edit</a></td>
386                         <td><a href="[% loo.script_name %]?op=delete_confirm&amp;categorycode=[% loo.categorycode |uri %]">Delete</a></td>
387                 </tr>
388                 [% END %]
389         </tbody>
390         </table>
391 [% ELSE %]
392         <div class="dialog alert">No categories have been defined. <a href="/cgi-bin/koha/admin/categorie.pl?op=add_form">Create a new category</a>.</div>
393 [% END %]
394 [% END %]
395
396 </div>
397 </div>
398 <div class="yui-b">
399 [% INCLUDE 'admin-menu.inc' %]
400 </div>
401 </div>
402 [% INCLUDE 'intranet-bottom.inc' %]