@@ -, +, @@ serials-edit.tt * barcode_check() function, with untranslatable strings * commented call to this function ------------------ $ git grep barcode_check -- This is only in serials-edit.tt and serials-receive.tt check who put the $ git blame -L130 koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt -- note the commit related number. $ git show 77b64098 -- should show bug 5917, but the patches on bugzilla don't have the change nicely, so... -- Note: it is part of a "new file" diff! --- .../prog/en/modules/serials/serials-edit.tt | 31 ---------------------- 1 file changed, 31 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt @@ -16,36 +16,6 @@ function popup(subscriptionid) { window.open("subscription-renew.pl?subscriptionid="+subscriptionid,"subscription_renewal",'width=700,height=400,toolbar=false,scrollbars=yes'); } -function barcode_check(){ - [% IF ( count ) %] - var count = [% count %]; - for(var i=1;i<=count;i++){ - - var barcodenum = "barcode"+i; - var statusnum = "status"+i; - var elembarcode = "document.getElementById('"+barcodenum+"')"; - var elemstatus = "document.getElementById('"+statusnum+"')"; -// alert(elembarcode+"\n"+eval(elembarcode+".value)); -// alert(elemstatus+"\n"+eval(elemstatus+".value")); - if(eval(elembarcode+".value") =='' && eval(elemstatus+".value") == 2){ - var answer = confirm("Leave barcode blank?\n - Note: unable to change this later"); - if (answer){ - document.f.submit(); - } else { - return false; - } - } - if(eval(elembarcode+".value".indexOf('TEMP')) > 0 && eval(elemstatus+".value") == 2){ - var answer = confirm("A barcode was not entered.\nDo you want to put in a barcode\nor do you want to use a system generated barcode?"); - if (answer){ - document.f.submit(); - } else { - return false; - } - } - } - [% END %] -} function unHideItems(index,labelindex, serialId) { subfield = document.getElementById(index); subfield.style.display = 'block'; @@ -127,7 +97,6 @@ $(document).ready(function() { [% IF ( callnumber ) %] callnumber: [% callnumber %][% END %] [% IF internalnotes %]

Nonpublic note: [% internalnotes %]

[% END %]
- [% IF ( Errors ) %]
--