6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>Koha › Administration › Patron categories › [% IF op == 'add_form' %][% IF ( categorycode ) %]Modify category '[% categorycode |html %]'[% ELSE %]New category[% END %][% END %]
8 [% IF op == 'delete_confirm' %][% IF ( patrons_in_category > 0 ) %]Cannot delete: category [% categorycode |html %] in use[% ELSE %]Confirm deletion of category '[% categorycode |html %]'[% END %][% END %]
10 [% INCLUDE 'doc-head-close.inc' %]
11 [% Asset.css("css/datatables.css") %]
12 <style type="text/css">#enrolmentmessage.hint { display : none; }</style>
15 <body id="admin_categorie" class="admin">
16 [% INCLUDE 'header.inc' %]
17 [% INCLUDE 'patrons-admin-search.inc' %]
19 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> › [% IF op == 'add_form' %] <a href="/cgi-bin/koha/admin/categories.pl">Patron categories</a> › [% IF ( categorycode ) %]Modify category '[% categorycode |html %]'[% ELSE %]New category[% END %][% END %]
20 [% IF op == 'delete_confirm' %] <a href="/cgi-bin/koha/admin/categories.pl">Patron categories</a> › [% IF ( patrons_in_category > 0 ) %]Cannot delete: Category [% categorycode |html %] in use[% ELSE %]Confirm deletion of category '[% categorycode |html %]'[% END %][% END %]
21 [% IF op == 'delete_confirmed' %] <a href="/cgi-bin/koha/admin/categories.pl">Patron categories</a> › Category deleted[% END %]
22 [% IF op == 'list' %]Patron categories[% END %]</div>
24 <div id="doc3" class="yui-t2">
29 [% FOR m IN messages %]
30 <div class="dialog [% m.type %]">
32 [% CASE 'error_on_update' %]
33 An error occurred when updating this patron category. Perhaps it already exists.
34 [% CASE 'error_on_insert' %]
35 An error occurred when inserting this patron category. The patron category might already exist.
36 [% CASE 'error_on_delete' %]
37 An error occurred when deleting this patron category. Check the logs.
38 [% CASE 'success_on_update' %]
39 Patron category updated successfully.
40 [% CASE 'success_on_insert' %]
41 Patron category inserted successfully.
42 [% CASE 'success_on_delete' %]
43 Patron category deleted successfully.
44 [% CASE 'already_exists' %]
45 This patron category already exists.
52 [% IF op == 'add_form' %]
53 <form id="category_form" action="/cgi-bin/koha/admin/categories.pl" method="post">
54 <input type="hidden" name="op" value="add_validate" />
55 <input type="hidden" name="checked" value="0" />
57 <h1>Modify category [% categorycode |html %]</h1>
61 <fieldset class="rows">
65 <span class="label">Category code: </span>[% categorycode |html %]
66 <input type="hidden" name="categorycode" value="[% category.categorycode |html %]" /><input type="hidden" name="is_a_modif" value="1" />
70 <label for="categorycode" class="required">Category code: </label>
71 <input type="text" name="categorycode" id="categorycode" size="10" maxlength="10" class="required" required="required" />
72 <span class="required">Required</span>
76 <label for="description" class="required">Description: </label>
77 <input type="text" name="description" id="description" size="40" maxlength="80" class="required" required="required" value="[% category.description |html %]" />
78 <span class="required">Required</span>
81 <span class="label">Enrollment period: </span>
83 <legend>Choose one</legend>
86 <label for="enrolmentperiod" style="width:6em;">In months: </label>
87 [% IF category.enrolmentperiod %]
88 <input type="text" class="enrollmentperiod" name="enrolmentperiod" id="enrolmentperiod" size="3" maxlength="3" value="[% category.enrolmentperiod %]" /> months
90 <input type="text" class="enrollmentperiod" name="enrolmentperiod" id="enrolmentperiod" size="3" maxlength="3" value="" /> months
94 <label for="enrolmentperioddate" style="width:6em;">Until date: </label>
95 <input type="text" class="enrollmentperiod datepicker" name="enrolmentperioddate" id="enrolmentperioddate" value="[% category.enrolmentperioddate | $KohaDates %]" />
101 <label for="dateofbirthrequired">Age required: </label>
102 <input type="text" name="dateofbirthrequired" id="dateofbirthrequired" value="[% category.dateofbirthrequired %]" size="3" maxlength="3" /> years
105 <label for="upperagelimit">Upperage limit: </label>
106 <input type="text" name="upperagelimit" id="upperagelimit" size="3" maxlength="3" value="[% category.upperagelimit %]" /> years
109 <label for="enrolmentfee">Enrollment fee: </label>
110 <input type="text" name="enrolmentfee" id="enrolmentfee" size="6" value="[% category.enrolmentfee | $Price on_editing => 1 %]" />
113 <label for="overduenoticerequired">Overdue notice required: </label>
114 <select name="overduenoticerequired" id="overduenoticerequired">
115 [% IF category.overduenoticerequired %]
116 <option value="0">No</option>
117 <option value="1" selected="selected">Yes</option>
119 <option value="0" selected="selected">No</option>
120 <option value="1">Yes</option>
125 <label for="hidelostitems">Lost items in staff client: </label>
126 <select name="hidelostitems" id="hidelostitems">
127 [% IF category.hidelostitems %]
128 <option value="0">Shown</option>
129 <option value="1" selected="selected">Hidden by default</option>
131 <option value="0" selected="selected">Shown</option>
132 <option value="1">Hidden by default</option>
137 <label for="reservefee">Hold fee: </label>
138 <input type="text" name="reservefee" id="reservefee" size="6" value="[% category.reservefee | $Price on_editing => 1 %]" />
141 <label for="category_type" class="required">Category type: </label>
142 <select name="category_type" id="category_type">
143 [% UNLESS category %]<option value="" selected="selected">Select a category type</option>[% ELSE %]<option value="">Select a category type</option>[% END %]
144 [% IF category and category.category_type == 'A' %]<option value="A" selected="selected">Adult</option>[% ELSE %]<option value="A">Adult</option>[% END %]
145 [% IF category and category.category_type == 'C' %]<option value="C" selected="selected">Child</option>[% ELSE %]<option value="C">Child</option>[% END %]
146 [% IF category and category.category_type == 'S' %]<option value="S" selected="selected">Staff</option>[% ELSE %]<option value="S">Staff</option>[% END %]
147 [% IF category and category.category_type == 'I' %]<option value="I" selected="selected">Organization</option>[% ELSE %]<option value="I">Organization</option>[% END %]
148 [% IF category and category.category_type == 'P' %]<option value="P" selected="selected">Professional</option>[% ELSE %]<option value="P">Professional</option>[% END %]
149 [% IF category and category.category_type == 'X' %]<option value="X" selected="selected">Statistical</option>[% ELSE %]<option value="X">Statistical</option>[% END %]
151 <span class="required">Required</span>
153 <li><label for="branches">Branches limitation: </label>
154 <select id="branches" name="branches" multiple size="10">
155 <option value="">All branches</option>
156 [% FOREACH branch IN branches_loop %]
157 [% IF branch.selected %]
158 <option selected="selected" value="[% branch.branchcode %]">[% branch.branchname |html %]</option>
160 <option value="[% branch.branchcode %]">[% branch.branchname |html %]</option>
164 <span>Select <i>All branches</i> if this category type must to be displayed all the time. Otherwise select libraries you want to associate with this value.
167 <li><label for="block_expired">Block expired patrons:</label>
168 <select name="BlockExpiredPatronOpacActions" id="block_expired">
169 [% IF not category or category.BlockExpiredPatronOpacActions == -1%]
170 <option value="-1" selected="selected"> Follow system preference BlockExpiredPatronOpacActions </option>
172 <option value="-1"> Follow system preference BlockExpiredPatronOpacActions </option>
175 [% IF category and category.BlockExpiredPatronOpacActions == 1 %]
176 <option value="1" selected="selected"> Block </option>
178 <option value="1"> Block </option>
181 [% IF category and category.BlockExpiredPatronOpacActions == 0 %]
182 <option value="0" selected="selected"> Don't block </option>
184 <option value="0"> Don't block </option>
188 Choose whether patrons of this category be blocked from public catalog actions such as renewing and placing holds when their cards have expired.
191 [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
192 <li><label for="checkprevcheckout">Check for previous checkouts: </label>
193 <select name="checkprevcheckout" id="checkprevcheckout">
194 [% IF category.checkprevcheckout == 'yes' %]
195 <option value="yes" selected="selected">Yes and try to override system preferences</option>
196 <option value="no">No and try to override system preferences</option>
197 <option value="inherit">Inherit from system preferences</option>
198 [% ELSIF category.checkprevcheckout == 'no' %]
199 <option value="yes">Yes and try to override system preferences</option>
200 <option value="no" selected="selected">No and try to override system preferences</option>
201 <option value="inherit">Inherit from system preferences</option>
203 <option value="yes">Yes and try to override system preferences</option>
204 <option value="no">No and try to override system preferences</option>
205 <option value="inherit" selected="selected">Inherit from system preferences</option>
209 Choose whether patrons of this category by default are reminded if they try to borrow an item they borrowed before.
214 <label for="default_privacy">Default privacy: </label>
215 <select id="default_privacy" name="default_privacy">
216 [% SET default_privacy = 'default' %]
217 [% IF category %][% SET default_privacy = category.default_privacy %][% END %]
218 [% SWITCH default_privacy %]
220 <option value="default">Default</option>
221 <option value="never">Never</option>
222 <option value="forever" selected="selected">Forever</option>
224 <option value="default">Default</option>
225 <option value="never" selected="selected">Never</option>
226 <option value="forever">Forever</option>
228 <option value="default" selected="selected">Default</option>
229 <option value="never">Never</option>
230 <option value="forever">Forever</option>
233 <span>Controls how long a patrons checkout history is kept for new patrons of this category. "Never" anonymizes checkouts on return, and "Forever" keeps a patron's checkout history indefinitely. When set to "Default", the amount of history kept is controlled by the cronjob <i>batch_anonymise.pl</i> which should be set up by your system administrator.</span>
238 [% IF ( EnhancedMessagingPreferences ) %]
239 <fieldset class="rows">
240 <h4>Default messaging preferences for this patron category</h4>
241 [% INCLUDE 'messaging-preference-form.inc' %]
244 <fieldset class="action">
245 <input type="submit" value="Save" />
246 <a href="/cgi-bin/koha/admin/categories.pl" class="cancel">Cancel</a>
251 [% IF op == 'delete_confirm' %]
252 <form action="/cgi-bin/koha/admin/categories.pl" method="post">
255 [% IF patrons_in_category > 0 %]
256 Category [% categorycode |html %] is in use. Deletion not possible!
258 Confirm deletion of category [% categorycode |html %]
262 [% IF patrons_in_category > 0 %]
263 <div class="dialog alert">
264 <strong>This category is used [% patrons_in_category %] times</strong>. Deletion not possible
268 <tr><th scope="row">Category code: </th><td>[% category.categorycode |html %]</td></tr>
269 <tr><th scope="row">Description: </th><td>[% category.description |html %]</td></tr>
270 <tr><th scope="row">Enrollment period: </th>
272 [% IF category.enrolmentperiod %]
273 [% category.enrolmentperiod %] months
275 until [% category.enrolmentperioddate | $KohaDates %]
279 <tr><th scope="row">Age required: </th><td>[% category.dateofbirthrequired %] years</td></tr>
280 <tr><th scope="row">Upperage limit: </th><td>[% category.upperagelimit %] years</td></tr>
281 <tr><th scope="row">Enrollment fee: </th><td>[% category.enrolmentfee | $Price %]</td></tr>
282 <tr><th scope="row">Receives overdue notices: </th><td>[% IF category. overduenoticerequired %]Yes[% ELSE %]No[% END %]</td></tr>
283 <tr><th scope="row">Lost items in staff client</th><td>[% IF category.hidelostitems %]Hidden by default[% ELSE %]Shown[% END %]</td></tr>
284 <tr><th scope="row">Hold fee: </th><td>[% category.reservefee | $Price %]</td></tr>
286 [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
288 <th scope="row">Check previous checkouts: </th>
290 [% SWITCH category.checkprevcheckout %]
302 <th scope="row">Default privacy: </th>
304 [% SWITCH category.default_privacy %]
315 <fieldset class="action">
316 [% IF patrons_in_category > 0 %]
317 <input type="submit" value="OK" />
319 <input type="hidden" name="op" value="delete_confirmed" />
320 <input type="hidden" name="categorycode" value="[% categorycode |html %]" />
321 <input type="submit" value="Delete this category" />
322 <a class="cancel" href="/cgi-bin/koha/admin/categories.pl">Cancel</a>
329 [% IF op == 'list' %]
331 <div id="toolbar" class="btn-toolbar">
332 <a class="btn btn-default btn-sm" id="newcategory" href="/cgi-bin/koha/admin/categories.pl?op=add_form"><i class="fa fa-plus"></i> New category</a>
335 <h2>Patron categories</h2>
337 You Searched for [% searchfield |html %]</span>
340 <table id="table_categorie">
343 <th scope="col">Code</th>
344 <th scope="col">Category name</th>
345 <th scope="col">Type</th>
346 <th scope="col">Enrollment period</th>
347 <th scope="col">Age required</th>
348 <th scope="col">Upper age limit</th>
349 <th scope="col">Enrollment fee</th>
350 <th scope="col">Overdue</th>
351 <th scope="col">Lost items</th>
352 <th scope="col">Hold fee</th>
353 [% IF ( EnhancedMessagingPreferences ) %]
354 <th scope="col">Messaging</th>
356 <th scope="col">Branches limitations</th>
357 [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
358 <th scope="col">Check previous checkout?</th>
360 <th scope="col">Default privacy</th>
361 <th scope="col">Actions</th>
365 [% FOREACH category IN categories %]
367 <td>[% category.categorycode |html %]</td>
369 <a href="/cgi-bin/koha/admin/categories.pl?op=add_form&categorycode=[% category.categorycode |uri %]">[% category.description |html %]</a>
372 [% SWITCH category.category_type %]
378 [% CASE 'X' %]Statistical
382 [% IF ( category.enrolmentperiod ) %]
383 [% category.enrolmentperiod %] months
385 until [% category.enrolmentperioddate | $KohaDates %]
388 [% IF (category.dateofbirthrequired) %]
389 <td>[% category.dateofbirthrequired %] years</td>
393 [% IF (category.upperagelimit) %]
394 <td>[% category.upperagelimit %] years</td>
398 [% IF (category.enrolmentfee > 0) %]
399 <td>[% category.enrolmentfee | $Price %]</td>
403 <td>[% IF ( category.overduenoticerequired ) %]Yes[% ELSE %]No[% END %]</td>
404 <td>[% IF ( category.hidelostitems ) %]Hidden[% ELSE %]Shown[% END %]</td>
405 [% IF (category.reservefee > 0) %]
406 <td>[% category.reservefee | $Price %]</td>
410 [% IF Koha.Preference('EnhancedMessagingPreferences') %]
411 <td style="white-space: nowrap; font-size:80%;">
412 [% SET default_messaging = category.default_messaging %]
413 [% IF default_messaging.size %]
414 [% FOREACH prefs IN default_messaging %]
415 [% FOREACH transport IN prefs.transports %]
416 [% IF ( transport.transport ) %]
417 [% IF ( prefs.Item_Due ) %]Item due
418 [% ELSIF ( prefs.Advance_Notice ) %]Advance notice
419 [% ELSIF ( prefs.Upcoming_Events ) %]Upcoming events
420 [% ELSIF ( prefs.Hold_Filled ) %]Hold filled
421 [% ELSIF ( prefs.Item_Check_in ) %]Item check-in
422 [% ELSIF ( prefs.Item_Checkout ) %]Item checkout
425 <strong>[% transport.transport %]</strong><br />
426 [% ELSE %]None<br />[% END %]
435 [% SET branch_limitations = category.branch_limitations %]
436 [% IF branch_limitations.size > 0 %]
437 [% branches_str = "" %]
438 [% FOREACH branch IN branch_limitations %]
439 [% branches_str = branches_str _ " " _ branch.branchname _ "(" _ branch.branchcode _ ")" %]
441 <span title="[% branches_str %]">
442 [% IF branch_limitations.size > 1 %]
443 [% branch_limitations.size %] branches limitations
445 [% branch_limitations.size %] branch limitation
452 [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
454 [% SWITCH category.checkprevcheckout %]
465 [% SWITCH category.default_privacy %]
475 <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/categories.pl?op=add_form&categorycode=[% category.categorycode |uri %]"><i class="fa fa-pencil"></i> Edit</a>
476 <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/categories.pl?op=delete_confirm&categorycode=[% category.categorycode |uri %]"><i class="fa fa-trash"></i> Delete</a>
483 <div class="dialog alert">No categories have been defined. <a href="/cgi-bin/koha/admin/categories.pl?op=add_form">Create a new category</a>.</div>
490 [% INCLUDE 'admin-menu.inc' %]
494 [% MACRO jsinclude BLOCK %]
495 [% Asset.js("js/admin-menu.js") %]
496 [% Asset.js("js/messaging-preference-form.js") %]
497 [% INCLUDE 'calendar.inc' %]
498 [% INCLUDE 'datatables.inc' %]
499 <script type="text/javascript">
500 var MSG_CATEGORYCODE_CHARS = _("Category code can only contain the following characters: letters, numbers, - and _.");
501 var MSG_ONE_ENROLLMENTPERIOD = ("Please choose an enrollment period in months OR by date.");
503 [% Asset.js("js/categories.js") %]
505 [% INCLUDE 'intranet-bottom.inc' %]