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