Bug 25727: Do not open options on clear
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / authorities / authorities.tt
1 [% USE raw %]
2 [% USE To %]
3 [% USE Asset %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>Koha &rsaquo; Authorities &rsaquo; [% IF ( authid ) %]Modify authority #[% authid | html %] ([% authtypetext | html %])[% ELSE %]Adding authority ([% authtypetext | html %])[% END %]</title>
6 [% INCLUDE 'doc-head-close.inc' %]
7 [% Asset.js("lib/hc-sticky.js") | $raw %]
8 [% Asset.js("js/cataloging.js") | $raw %]
9
10 <script>
11     $(window).load(function(){
12         $("#loading").hide();
13     });
14     var Sticky;
15     $(document).ready(function() {
16         var tabs = $('#authoritytabs').tabs();
17         $( "ul.sortable_field", tabs ).sortable();
18         $( "ul.sortable_subfield", tabs ).sortable();
19         Sticky = $("#toolbar");
20         Sticky.hcSticky({
21             stickTo: ".main",
22             stickyClass: "floating"
23         });
24         $("#addauth").click(function(){
25             if(Check()){
26                 $("#f").submit();
27             }
28                 });
29         $("#z3950submit").click(function(){
30             var strQuery = GetZ3950Terms();
31             if(strQuery){
32                 window.open("/cgi-bin/koha/cataloguing/z3950_auth_search.pl?authid=[% authid | html %]"+strQuery,"z3950search",'width=740,height=450,location=yes,toolbar=no,scrollbars=yes,resize=yes');
33             }
34             return false;
35         });
36     });
37
38 /**
39  * check if z3950 mandatories are set or not
40  */
41 function GetZ3950Terms(){
42  var strQuery="&authtypecode="+document.forms['f'].authtypecode.value;
43     var mandatories = new Array();
44     var mandatories_label = new Array();
45     [% FOREACH BIG_LOO IN BIG_LOOP %][% FOREACH innerloo IN BIG_LOO.innerloop %][% FOREACH subfield_loo IN innerloo.subfield_loop %][% IF ( subfield_loo.z3950_mandatory ) %]mandatories.push("[% subfield_loo.id | html %]");
46         mandatories_label.push("[% subfield_loo.z3950_mandatory | html %]");[% END %][% END %][% END %][% END %]
47
48     for(var i=0,len=mandatories.length; i<len ; i++){
49         var field_value = document.getElementById(mandatories[i]).value;
50         if( field_value ){
51             strQuery += "&"+mandatories_label[i]+"="+field_value;
52         }
53     }
54     return strQuery;
55 }
56
57 /**
58  * check if mandatory subfields are written
59  */
60 function AreMandatoriesNotOk(){
61     var mandatories = new Array();
62     var mandatoriesfields = new Array();
63     var   tab = new Array();
64     var label = new Array();
65     [% FOREACH BIG_LOO IN BIG_LOOP %]
66         [% FOREACH innerloo IN BIG_LOO.innerloop %]
67                         [% IF ( innerloo.mandatory ) %]
68                         mandatoriesfields.push(new Array("[% innerloo.tag | html %]","[% innerloo.index | html %][% innerloo.random | html %]","[% innerloo.index | html %]"));
69             [% END %]
70                 [% FOREACH subfield_loo IN innerloo.subfield_loop %]
71                         [% IF ( subfield_loo.mandatory ) %]mandatories.push("[% subfield_loo.id | html %]");
72                     tab.push("[% BIG_LOO.number | html %]");
73                     label.push("[% To.json(subfield_loo.marc_lib) | $raw %]");
74                         [% END %]
75                         [% END %]
76                 [% END %]
77         [% END %]
78     var StrAlert = "";
79     for(var i=0,len=mandatories.length; i<len ; i++){
80         var id_string = mandatories[i];
81         // alert (id_string);
82         if( ! $("#" + id_string).val() ){
83             var elt = document.getElementById(id_string);
84             if ( elt.nodeName == 'SELECT' ) {
85                 $(elt).siblings('.select2').find("span[role='combobox']").addClass('subfield_not_filled');
86             } else {
87                 $(elt).addClass('subfield_not_filled');
88             }
89
90             $(elt).focus();
91             StrAlert += "\t* " + _("%s in tab %s").format(label[i], tab[i]) + "\n";
92         }
93     }
94     
95     /* Check for mandatories field(not subfields) */
96     for(var i=0,len=mandatoriesfields.length; i<len; i++){
97         isempty  = true;
98         arr      = mandatoriesfields[i];
99         divid    = "tag_" + arr[0] + "_" + arr[1];
100         varegexp = new RegExp("^tag_" + arr[0] + "_code_");
101
102                 if(parseInt(arr[0]) >= 10){
103                 elem = document.getElementById(divid);
104                 eleminputs = elem.getElementsByTagName('input');
105                 
106                 for(var j=0,len2=eleminputs.length; j<len2; j++){
107         
108                         if(eleminputs[j].name.match(varegexp) && eleminputs[j].value){
109                                         inputregexp = new RegExp("^tag_" + arr[0] + "_subfield_" + eleminputs[j].value + "_" + arr[2]);
110                                         
111                                         for( var k=0; k<len2; k++){
112                                                 if(eleminputs[k].id.match(inputregexp) && eleminputs[k].value){
113                                                         isempty = false
114                                                 }
115                                         }
116                         }
117                 }
118         }else{
119                 isempty = false;
120         }
121         
122         if(isempty){
123                 flag = 1;
124                 StrAlert += "\t* " + _("Field %s is mandatory, at least one of its subfields must be filled.").format(arr[0]) + "\n";
125         }
126         
127     }
128     
129     
130     if(StrAlert){
131         return _("Can't save this record because the following field aren't filled :") + "\n\n" + StrAlert;
132     }
133     return false;
134 }
135
136 function Check(){
137     var StrAlert = AreMandatoriesNotOk();
138     if( ! StrAlert ){
139         document.f.submit();
140         return true;
141     } else {
142         alert(StrAlert);
143         return false;
144     }
145 }
146
147 function AddField(field,cntrepeatfield) {
148     document.forms['f'].op.value = "addfield";
149     document.forms['f'].addfield_field.value=field;
150     document.forms['f'].repeat_field.value=cntrepeatfield;
151     document.f.submit();
152 }
153
154 function addauthority() {
155     X = document.forms[0].authtype.value;
156     window.location="/cgi-bin/koha/authorities/authorities.pl?authtypecode="+X;
157 }
158 function searchauthority() {
159     X = document.forms[0].authtype2.value;
160     Y = document.forms[0].value.value;
161     window.location="/cgi-bin/koha/authorities/authorities-home.pl?op=do_search&type=intranet&authtypecode="+X+"&value="+Y+"&marclist=&and_or=and&excluding=&operator=contains";
162 }
163 function confirmnotdup(redirect){
164     $("#confirm_not_duplicate").attr("value","1");
165     Check();
166 }
167 </script>
168 [% Asset.css("css/addbiblio.css") | $raw %]
169
170 [% INCLUDE 'select2.inc' %]
171
172 </head>
173 <body id="auth_authorities" class="auth">
174
175 <div id="loading">
176    <div>Loading, please wait...</div>
177 </div>
178
179 [% INCLUDE 'header.inc' %]
180
181 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a> &rsaquo; [% IF ( authid ) %]Modify authority #[% authid | html %] ([% authtypetext | html %])[% ELSE %]Adding authority [% authtypetext | html %][% END %]  </div>
182
183 <div class="main container-fluid">
184     <div class="row">
185         <div class="col-md-8 col-md-offset-2">
186
187 [% IF ( authid ) %]
188 <h1>Modify authority #[% authid | html %] [% authtypetext | html %]</h1>
189 [% ELSE %]
190 <h1>Adding authority [% authtypetext | html %]</h1>
191 [% END %]
192
193 [% IF ( duplicateauthid ) %]
194         <div class="dialog alert">
195                 <h3>Duplicate record suspected</h3>
196                 <p>Is this a duplicate of <a href="/cgi-bin/koha/authorities/detail.pl?authid=[% duplicateauthid | uri %]" class="popup" onclick="openWindow('/cgi-bin/koha/authorities/detail.pl?authid=[% duplicateauthid | html %]&amp;popup=1', 'DuplicateAuthority','800','600'); return false;" class="button">[% duplicateauthvalue | html %]</a> ?</p>
197
198                 <form action="authorities.pl" method="get">
199                     <input type="hidden" name="authid" value="[% duplicateauthid | html %]" />
200                     <button type="submit" class="new"><i class="fa fa-pencil"></i> Yes: Edit existing authority</button>
201                 </form>
202                 <form action="authorities.pl" method="get">
203                     <button class="new" onclick="confirmnotdup('items'); return false;"><i class="fa fa-save"></i> No: Save as new authority</button>
204                 </form>
205         </div>
206 [% END %]
207
208 <form method="post" name="f" action="/cgi-bin/koha/authorities/authorities.pl">
209     <input type="hidden" name="op" value="add" />
210     <input type="hidden" name="addfield_field" value="" />
211     <input type="hidden" name="repeat_field" value="" />
212     <input type="hidden" name="authtypecode" value="[% authtypecode | html %]" />
213     <input type="hidden" name="authid" value="[% authid | html %]" />
214     <input type="hidden" name="index" value="[% index | html %]" />
215     <input type="hidden" value="0" id="confirm_not_duplicate" name="confirm_not_duplicate" />
216
217     <div id="toolbar" class="btn-toolbar">
218         <div class="btn-group"><a href="#" id="addauth" class="btn btn-default" accesskey="w"><i class="fa fa-save"></i> Save</a></div>
219         <div class="btn-group">
220             [% IF ( authid ) %]
221                 <a class="btn btn-default" id="z3950submit" href="#"><i class="fa fa-search"></i> Replace record via Z39.50/SRU search</a>
222             [% ELSE %]
223                 <a class="btn btn-default" id="z3950submit" href="#"><i class="fa fa-search"></i> Z39.50/SRU search</a>
224             [% END %]
225         </div>
226         <div class="btn-group">
227             [% IF ( authid ) %]
228                 <a class="btn btn-default" id="cancel" href="/cgi-bin/koha/authorities/detail.pl?authid=[% authid | url %]">Cancel</a>
229             [% ELSE %]
230                 <a class="btn btn-default" id="cancel" href="/cgi-bin/koha/authorities/authorities-home.pl">Cancel</a>
231             [% END %]
232         </div>
233     </div>
234
235 <div id="authoritytabs" class="toptabs numbered">
236     <ul>
237         [% FOREACH BIG_LOO IN BIG_LOOP %]
238         <li><a href="#tab[% BIG_LOO.number | uri %]XX">[% BIG_LOO.number | html %]</a></li>
239         [% END %]
240     </ul>
241
242 [% FOREACH BIG_LOO IN BIG_LOOP %]
243     <div id="tab[% BIG_LOO.number | html %]XX">
244
245     [% previous = "" %]
246     [% FOREACH innerloo IN BIG_LOO.innerloop %]
247     [% IF ( innerloo.tag ) %]
248     [% IF innerloo.tag != previous %]
249         [% IF previous != "" %]
250             </ul>
251         [% END %]
252         [% previous = innerloo.tag %]
253         <ul class="sortable_field">
254     [% END %]
255     <li class="tag clearfix" id="tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]">
256         <div class="tag_title" id="div_indicator_tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]">
257         [% UNLESS hide_marc %]
258             [% IF advancedMARCEditor %]
259                 <a href="#" tabindex="1" class="tagnum" title="[% innerloo.tag_lib | html %] - Click to Expand this Tag" onclick="ExpandField('tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]'); return false;">[% innerloo.tag | html %]</a>
260             [% ELSE %]
261                 <span title="[% innerloo.tag_lib | html %]">[% innerloo.tag | html %]</span>
262             [% END %]
263                 [% IF ( innerloo.fixedfield ) %]
264                     <input type="text"
265                         tabindex="1"
266                         class="indicator flat"
267                         style="display:none;"
268                         name="tag_[% innerloo.tag | html %]_indicator1_[% innerloo.index | html %][% innerloo.random | html %]"
269                         size="1"
270                         maxlength="1"
271                         value="[% innerloo.indicator1 | html %]" />
272                     <input type="text"
273                         tabindex="1"
274                         class="indicator flat"
275                         style="display:none;"
276                         name="tag_[% innerloo.tag | html %]_indicator2_[% innerloo.index | html %][% innerloo.random | html %]"
277                         size="1"
278                         maxlength="1"
279                         value="[% innerloo.indicator2 | html %]" />
280                 [% ELSE %]
281                     <input type="text"
282                         tabindex="1"
283                         class="indicator flat"
284                         name="tag_[% innerloo.tag | html %]_indicator1_[% innerloo.index | html %][% innerloo.random | html %]"
285                         size="1"
286                         maxlength="1"
287                         value="[% innerloo.indicator1 | html %]" />
288                     <input type="text"
289                         tabindex="1"
290                         class="indicator flat"
291                         name="tag_[% innerloo.tag | html %]_indicator2_[% innerloo.index | html %][% innerloo.random | html %]"
292                         size="1"
293                         maxlength="1"
294                         value="[% innerloo.indicator2 | html %]" />
295                 [% END %] -
296         [% ELSE %]
297                 [% IF ( innerloo.fixedfield ) %]
298                     <input type="hidden"
299                         tabindex="1"
300                         name="tag_[% innerloo.tag | html %]_indicator1_[% innerloo.index | html %][% innerloo.random | html %]"
301                         value="[% innerloo.indicator1 | html %]" />
302                     <input type="hidden"
303                         tabindex="1"
304                         name="tag_[% innerloo.tag | html %]_indicator2_[% innerloo.index | html %][% innerloo.random | html %]"
305                         value="[% innerloo.indicator2 | html %]" />
306                 [% ELSE %]
307                     <input type="hidden"
308                         tabindex="1"
309                         name="tag_[% innerloo.tag | html %]_indicator1_[% innerloo.index | html %][% innerloo.random | html %]"
310                         value="[% innerloo.indicator1 | html %]" />
311                     <input type="hidden"
312                         tabindex="1"
313                         name="tag_[% innerloo.tag | html %]_indicator2_[% innerloo.index | html %][% innerloo.random | html %]"
314                         value="[% innerloo.indicator2 | html %]" />
315                 [% END %]
316         [% END %]
317
318             [% UNLESS advancedMARCEditor %]
319                 <a href="#" tabindex="1" class="expandfield" onclick="ExpandField('tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]'); return false;" title="Click to Expand this Tag">[% innerloo.tag_lib | html %]</a>
320             [% END %]
321                 <span class="field_controls">
322                 [% IF ( innerloo.repeatable ) %]
323                     <a href="#" tabindex="1" class="buttonPlus" onclick="CloneField('tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]','[% hide_marc | html %]','[% advancedMARCEditor | html %]'); return false;" title="Repeat this Tag">
324                         <img src="[% interface | html %]/[% theme | html %]/img/repeat-tag.png" alt="Repeat this Tag" />
325                     </a>
326                 [% END %]
327                     <a href="#" tabindex="1" class="buttonMinus" onclick="UnCloneField('tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]'); return false;" title="Delete this Tag">
328                         <img src="[% interface | html %]/[% theme | html %]/img/delete-tag.png" alt="Delete this Tag" />
329                     </a>
330                 </span>
331
332         </div>
333
334         <ul class="sortable_subfield">
335         [% FOREACH subfield_loo IN innerloo.subfield_loop %]
336             <!--  One line on the marc editor -->
337             <li class="subfield_line" style="[% subfield_loo.visibility | html %]" id="subfield[% subfield_loo.tag | html %][% subfield_loo.subfield | html %][% subfield_loo.random | html %]">
338
339                 [% UNLESS advancedMARCEditor %]
340                     [% IF ( subfield_loo.fixedfield ) %]<label for="tag_[% subfield_loo.tag | html %]_subfield_[% subfield_loo.subfield | html %]_[% subfield_loo.index | html %]_[% subfield_loo.index_subfield | html %]" style="display:none;" class="labelsubfield">
341                     [% ELSE %]<label for="tag_[% subfield_loo.tag | html %]_subfield_[% subfield_loo.subfield | html %]_[% subfield_loo.index | html %]_[% subfield_loo.index_subfield | html %]" class="labelsubfield">
342                     [% END %]
343                 [% END %]
344                 
345                 [% UNLESS hide_marc %]
346                 <span class="subfieldcode">
347                         <input type="text"
348                             title="[% subfield_loo.marc_lib | $raw %]"
349                             style=" [% IF ( subfield_loo.fixedfield ) %]display:none; [% END %]border:0;"
350                             name="tag_[% subfield_loo.tag | html %]_code_[% subfield_loo.subfield | html %]_[% subfield_loo.index | html %]_[% subfield_loo.index_subfield | html %]"
351                             value="[% subfield_loo.subfield | html %]"
352                             size="1"
353                             maxlength="1"
354                             class="flat"
355                             tabindex="0" />
356                 </span>
357                 [% ELSE %]
358                     <input type="hidden"
359                         name="tag_[% subfield_loo.tag | html %]_code_[% subfield_loo.subfield | html %]_[% subfield_loo.index | html %]_[% subfield_loo.index_subfield | html %]"
360                         value="[% subfield_loo.subfield | html %]" />
361                 [% END %]
362
363                 [% UNLESS advancedMARCEditor %]
364                     [% IF ( subfield_loo.mandatory ) %]<span class="subfield subfield_mandatory">[% ELSE %]<span class="subfield">[% END %]
365                         [% subfield_loo.marc_lib | $raw %]
366                         [% IF ( subfield_loo.mandatory ) %]<span class="mandatory_marker" title="This field is mandatory">*</span>[% END %]
367                     </span>
368                     </label>
369                 [% END %]
370                 
371                 [% SET mv = subfield_loo.marc_value %]
372                 [% IF ( mv.type == 'select' ) %]
373                      <select name="[%- mv.name | html -%]" tabindex="1" size="1" class="input_marceditor select2" id="[%- mv.id | html -%]">
374                      [% FOREACH aval IN mv.values %]
375                          [% IF aval == mv.default %]
376                          <option value="[%- aval | html -%]" selected="selected">[%- mv.labels.$aval | html -%]</option>
377                          [% ELSE %]
378                          <option value="[%- aval | html -%]">[%- mv.labels.$aval | html -%]</option>
379                          [% END %]
380                      [% END %]
381                      </select>
382                 [% ELSIF ( mv.type == 'text1' ) %]
383                     <input type="text" id="[%- mv.id | html -%]" name="[%- mv.id | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" tabindex="1" />
384                     <a href="#" class="buttonDot" onclick="openAuth(this.parentNode.getElementsByTagName('input')[1].id,'[%- mv.authtypecode | html -%]','auth'); return false;" tabindex="1" title="Tag editor">...</a>
385                 [% ELSIF ( mv.type == 'text2' ) %]
386                     <input type="text" id="[%- mv.id | html -%]" size="67" maxlength="[%- mv.maxlength | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" />
387                     [% IF mv.noclick %]
388                         <a href="#" class="buttonDot tag_editor disabled" tabindex="-1" title="No popup">...</a>
389                     [% ELSE %]
390                         <a href="#" id="buttonDot_[% mv.id | html %]" class="buttonDot tag_editor" title="Tag editor">...</a>
391                     [% END %]
392                     [% mv.javascript | $raw %]
393                 [% ELSIF ( mv.type == 'text' ) %]
394                     <input type="text" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" tabindex="1" size="67" maxlength="[%- mv.maxlength | html -%]" />
395                 [% ELSIF ( mv.type == 'textarea' ) %]
396                     <textarea cols="70" rows="4" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" class="input_marceditor" tabindex="1" size="67" maxlength="[%- mv.maxlength | html -%]">[%- mv.value | html -%]</textarea>
397                 [% ELSIF ( mv.type == 'hidden' ) %]
398                     <input tabindex="1" type="hidden" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" size="67" maxlength="[%- mv.maxlength | html -%]" value="[%- mv.value | html -%]" />
399                 [% ELSIF ( mv.type == 'hidden_simple' ) %]
400                     <input type="hidden" name="[%- mv.name | html -%]" />
401                 [% END %]
402
403                 <span class="subfield_controls">
404                 [% IF ( subfield_loo.repeatable ) %]
405                     <a href="#" class="buttonPlus" tabindex="1" onclick="CloneSubfield('subfield[% subfield_loo.tag | html %][% subfield_loo.subfield | html %][% subfield_loo.random | html %]','[% advancedMARCEditor | html %]'); return false;">
406                         <img src="[% interface | html %]/[% theme | html %]/img/clone-subfield.png" alt="Clone" title="Clone this subfield" />
407                     </a>
408                     <a href="#" class="buttonMinus" tabindex="1" onclick="UnCloneField('subfield[% subfield_loo.tag | html %][% subfield_loo.subfield | html %][% subfield_loo.random | html %]'); return false;">
409                         <img src="[% interface | html %]/[% theme | html %]/img/delete-subfield.png" alt="Delete" title="Delete this subfield" />
410                     </a>
411                 [% END %]
412                 </span>
413                                 </li>
414                                 <!-- End of the line -->
415                             [% END %]
416                             </ul> <!-- /.sortable_subfield -->
417                         </li>
418                     [% END %]<!-- if innerloo.tag -->
419                 [% END %]<!-- BIG_LOO.innerloop -->
420                 </ul> <!-- /.sortable_field -->
421             </div>
422         [% END %]<!-- BIG_LOOP -->
423     </div><!-- tabs -->
424
425 <div name="hidden" id="hidden" class="tab">
426 [% FOREACH hidden_loo IN hidden_loop %]
427     <input type="hidden" name="tag" value="[% hidden_loo.tag | html %]" />
428     <input type="hidden" name="subfield" value="[% hidden_loo.subfield | html %]" />
429     <input type="hidden" name="mandatory" value="[% hidden_loo.mandatory | html %]" />
430     <input type="hidden" name="kohafield" value="[% hidden_loo.kohafield | html %]" />
431     <input type="hidden" name="tag_mandatory" value="[% hidden_loo.tag_mandatory | html %]" />
432 [% END %]
433 </div>
434 [% IF ( oldauthnumtagfield ) %]
435     <input type="hidden" name="tag" value="[% oldauthnumtagfield | html %]" />
436     <input type="hidden" name="subfield" value="[% oldauthnumtagsubfield | html %]" />
437     <input type="hidden" name="field_value" value="[% authid | html %]" />
438     <input type="hidden" name="mandatory" value="0" />
439     <input type="hidden" name="kohafield" value="[% kohafield | html %]" />
440     <input type="hidden" name="tag_mandatory" value="[% tag_mandatory | html %]" />
441     <input type="hidden" name="tag" value="[% oldauthtypetagfield | html %]" />
442     <input type="hidden" name="subfield" value="[% oldauthtypetagsubfield | html %]" />
443     <input type="hidden" name="field_value" value="[% authtypecode | html %]" />
444 [% END %]
445
446 </form>
447
448 </div>
449 </div>
450 </div>
451
452 [% INCLUDE 'intranet-bottom.inc' %]