Bug 18688: Warnings about UTF-8 charset when creating a new language
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / debit_types.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Branches %]
4 [% USE Price %]
5 [% SET footerjs = 1 %]
6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>Koha &rsaquo; Administration &rsaquo;
8     [% IF op =='add_form' %]
9        Debit types &rsaquo;
10        [% IF debit_type.code %]
11            Modify debit type
12        [% ELSE %]
13            New debit type
14        [% END %]
15     [% ELSE %]
16        Debit types
17     [% END %]
18 </title>
19 [% INCLUDE 'doc-head-close.inc' %]
20 </head>
21
22 <body id="admin_debit_types" class="admin">
23 [% INCLUDE 'header.inc' %]
24 [% INCLUDE 'prefs-admin-search.inc' %]
25
26 <div id="breadcrumbs">
27     <a href="/cgi-bin/koha/mainpage.pl">Home</a>
28 &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
29 &rsaquo; <a href="/cgi-bin/koha/admin/debit_types.pl">Debit types</a>
30 [% IF op == 'add_form' %]
31 &rsaquo; [% IF debit_type.code %]Modify[% ELSE %]New[% END %] debit type
32 [% END %]
33 </div>
34
35 <div class="main container-fluid">
36     <div class="row">
37         <div class="col-sm-10 col-sm-push-2">
38             <main>
39
40                 [% FOREACH m IN messages %]
41                 <div class="dialog [% m.type | html %]">
42                     [% SWITCH m.code %]
43                     [% CASE 'success_on_saving' %]
44                         Debit type saved successfully.
45                     [% CASE 'error_on_saving' %]
46                         An error occurred when saving this debit type.
47                     [% CASE 'success_on_archive' %]
48                         Debit type archived successfully.
49                     [% CASE 'success_on_restore' %]
50                         Debit type restored successfully.
51                     [% CASE %]
52                         [% m.code | html %]
53                     [% END %]
54                 </div>
55                 [% END %]
56
57                 [% IF op == 'add_form' %]
58                     [% IF debit_type %]
59                         <h3>Modify a debit type</h3>
60                     [% ELSE %]
61                         <h3>New debit type</h3>
62                     [% END %]
63
64                     <form action="/cgi-bin/koha/admin/debit_types.pl" name="Aform" method="post" class="validated">
65                         <input type="hidden" name="op" value="add_validate" />
66                         <fieldset class="rows">
67                             <ol>
68                                 <li>
69                                     <label for="code" class="required">Debit type code: </label>
70                                     [% IF debit_type %]
71                                         <strong>[% debit_type.code | html %]</strong>
72                                         <input type="hidden" name="code" value="[% code | html %]" />
73                                     [% ELSE %]
74                                     <input type="text" name="code" id="code" size="80" maxlength="64" class="required" required="required"><span class="required">Required. Maximum length is 64 letters</span>
75                                     [% END %]
76                                 </li>
77                                 <li>
78                                     <label for="default_amount">Default amount: </label>
79                                     <input type="text" pattern="^\d+(\.\d{2})?$" name="default_amount" id="default_amount" size="80" maxlength="100" value="[% debit_type.default_amount | $Price on_editing => 1 %]" step="any" min="0"/>
80                                 </li>
81                                 <li>
82                                     <label for="description" class="required">Description: </label>
83                                     <input type="text" name="description" id="description" required="required" class="required" size="80" maxlength="100" value="[% debit_type.description | html %]" /> <span class="required">Required</span>
84                                 </li>
85                                 <li>
86                                     <label for="can_be_added_manually">Can be added manually? </label>
87                                     [% IF debit_type.can_be_added_manually %]
88                                         <input type="checkbox" name="can_be_added_manually" id="can_be_added_manually" checked="checked" value="1" />
89                                     [% ELSE %]
90                                         <input type="checkbox" name="can_be_added_manually" id="can_be_added_manually" value="1" />
91                                     [% END %]
92                                 </li>
93                                 <li>
94                                     <label for="branches">Libraries limitation: </label>
95                                     <select id="branches" name="branches" multiple size="10">
96                                         <option value="">All libraries</option>
97                                         [% FOREACH branch IN branches_loop %]
98                                         [% IF ( branch.selected ) %]
99                                         <option selected="selected" value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option>
100                                         [% ELSE %]
101                                         <option value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option>
102                                         [% END %]
103                                         [% END %]
104                                     </select>
105                                     <span>Select 'All libraries' if this debit type should be available at all libraries. Otherwise select libraries you want to associate debit type with.</span>
106                                 </li>
107                             </ol>
108                         </fieldset>
109
110                         <fieldset class="action">
111                             <button id="save_debit_type" class="btn btn-default"><i class="fa fa-save"></i> Save</button>
112                             <a class="cancel btn-link" href="/cgi-bin/koha/admin/debit_types.pl"><i class="fa fa-times"></i> Cancel</a>
113                         </fieldset>
114                     </form>
115                 [% END %]
116
117                 [% IF op == 'list' %]
118                     <div id="toolbar" class="btn-toolbar">
119                         <a class="btn btn-default" id="newdebittype" href="/cgi-bin/koha/admin/debit_types.pl?op=add_form"><i class="fa fa-plus"></i> New debit type</a>
120                     </div>
121
122                     <h3>Account debit types</h3>
123                     [% IF debit_types.count %]
124                         <table id="table_debit_types">
125                             <thead>
126                                 <th>Archived</th>
127                                 <th>System</th>
128                                 <th>Code</th>
129                                 <th>Description</th>
130                                 <th>Default amount</th>
131                                 <th>Can be added manually</th>
132                                 <th>Library limitations</th>
133                                 <th>Actions</th>
134                             </thead>
135                             <tbody>
136                                 [% FOREACH debit_type IN debit_types %]
137                                 <tr>
138                                     <td>[% debit_type.archived | html %]</td>
139                                     <td>[% debit_type.is_system | html %]</td>
140                                     <td>[% debit_type.code | html %]</td>
141                                     <td>[% debit_type.description | html %]</td>
142                                     <td>[% debit_type.default_amount | $Price %]</td>
143                                     <td>[% IF debit_type.can_be_added_manually %]Yes[% ELSE %]No[% END %]</td>
144                                     <td>
145                                         [% IF debit_type.library_limits.count > 0 %]
146                                             [% library_limits_str = "" %]
147                                             [% FOREACH library IN debit_type.library_limits %]
148                                                 [%- IF loop.first -%]
149                                                 [% library_limits_str = library.branchname _ " (" _ library.branchcode _ ")" %]
150                                                 [% ELSE %]
151                                                 [% library_limits_str = library_limits_str _ "\n" _ library.branchname _ " (" _ library.branchcode _ ")" %]
152                                                 [% END %]
153                                             [% END %]
154                                             <span class="library_limitation" title="[% library_limits_str | html %]">
155                                                 [% IF debit_type.library_limits.count > 1 %]
156                                                     [% debit_type.library_limits.count | html %] library limitations
157                                                 [% ELSE %]
158                                                     [% debit_type.library_limits.count | html %] library limitation
159                                                 [% END %]
160                                         [% ELSE %]
161                                             No limitation
162                                         [% END %]
163                                     </td>
164                                     <td class="actions">
165                                         [% IF !debit_type.is_system && !debit_type.archived %]
166                                         <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/debit_types.pl?op=add_form&amp;code=[% debit_type.code | uri %]&type=debit"><i class="fa fa-pencil"></i> Edit</a>
167                                         <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/debit_types.pl?op=archive&amp;code=[% debit_type.code | uri %]"><i class="fa fa-archive"></i> Archive</a>
168                                         [% ELSIF debit_type.archived %]
169                                         <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/debit_types.pl?op=unarchive&amp;code=[% debit_type.code | uri %]"><i class="fa fa-undo"></i> Restore</a>
170                                         [% END %]
171                                     </td>
172                                 </tr>
173                                 [% END %]
174                             </tbody>
175                         </table>
176                     [% ELSE %]
177                         <div class="dialog message">
178                             There are no account debit types defined. <a href="/cgi-bin/koha/admin/debit_types.pl?op=add_form">Create new debit type</a>
179                         </div>
180                     [% END %]
181                 [% END %]
182             </main>
183         </div> <!-- /.col-sm-10.col-sm-push-2 -->
184
185         <div class="col-sm-2 col-sm-pull-10">
186             <aside>
187                 [% INCLUDE 'admin-menu.inc' %]
188             </aside>
189         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
190     </div> <!-- /.row -->
191
192 [% MACRO jsinclude BLOCK %]
193     [% Asset.js("js/admin-menu.js") | $raw %]
194     [% INCLUDE 'datatables.inc' %]
195
196     <script>
197         $(document).ready(function() {
198             var txtActivefilter = _("Filter system debit types");
199             var txtInactivefilter = _("Show all debit types");
200             var table_debit_types = $("#table_debit_types").dataTable($.extend(true, {}, dataTablesDefaults, {
201                 "aoColumnDefs": [
202                     { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
203                     { "aTargets": [ 0, 1 ], "bSortable": false, "bVisible": false },
204                 ],
205                 "aaSorting": [[ 0, "asc" ],[ 2, "asc" ]],
206                 "sDom": 'C<"top pager"ilpfB><"#filter_s">tr<"bottom pager"ip>',
207                 "iDisplayLength": 20,
208                 "sPaginationType": "full_numbers"
209             }));
210             $("#filter_s").html('<p><a href="#" id="filter_system"><i class="fa fa-filter"></i> '+txtActivefilter+'</a>');
211             $('#filter_system').click(function(e) {
212                 e.preventDefault();
213                 if ($(this).hasClass('filtered')) {
214                     var filteredValue = '';
215                     $(this).html('<i class="fa fa-filter"></i> '+txtActivefilter);
216                 } else { //Not filtered. Let's do it!
217                     var filteredValue = '0';
218                     $(this).html('<i class="fa fa-filter"></i> '+txtInactivefilter);
219                 }
220                 table_debit_types.fnFilter(filteredValue, 1, false, false);
221                 $(this).toggleClass('filtered');
222             });
223
224             //Start filtered
225             $('#filter_system').click();
226         });
227     </script>
228 [% END %]
229
230 [% INCLUDE 'intranet-bottom.inc' %]