Bug 11784 - fix displaying patron images in self checkout
[koha_fer] / cataloguing / value_builder / marc21_field_005.pl
index 4de9d88..2be76b5 100755 (executable)
@@ -1,8 +1,5 @@
-
 #!/usr/bin/perl
 
-# $Id$
-
 # Copyright 2000-2002 Katipo Communications
 #
 # This file is part of Koha.
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along with
-# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
-# Suite 330, Boston, MA  02111-1307 USA
-
-require Exporter;
-use C4::AuthoritiesMarc;
-use C4::Auth;
-use C4::Context;
-use C4::Output;
-use C4::Interface::CGI::Output;
-use CGI;
-use C4::Search;
-use MARC::Record;
-use C4::Koha;
+# You should have received a copy of the GNU General Public License along
+# with Koha; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
+use strict;
+#use warnings; FIXME - Bug 2505
+#use C4::Context;
 
 =head1
 
 plugin_parameters : other parameters added when the plugin is called by the dopop function
 
 =cut
+
 sub plugin_parameters {
-my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
-return "";
+    # my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
+    return "";
 }
 
 =head1
@@ -56,53 +46,34 @@ returns :
 the 3 scripts are inserted after the <input> in the html code
 
 =cut
+
 sub plugin_javascript {
-my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
-my $function_name= "210c".(int(rand(100000))+1);
-
-# find today's date
-my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
-                                                               localtime(time);
-$year +=1900;
-$mon +=1;
-if (length($mon)==1) {
-       $mon = "0".$mon;
-}
-if (length($mday)==1) {
-       $mday = "0".$mday;
-}
-if (length($hour)==1) {
-        $hour = "0".$hour;
-}
-if (length($min)==1) {
-        $min = "0".$min;
-}
-if (length($sec)==1) {
-        $hour = "0".$sec;
-}
+    my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
+    my $function_name= $field_number;
+
+    # find today's date
+    my @a= (localtime) [5,4,3,2,1,0]; $a[0]+=1900; $a[1]++;
+    my $date = sprintf("%4d%02d%02d%02d%02d%04.1f",@a);
 
+    my $res  = "
+<script type=\"text/javascript\">
+//<![CDATA[
 
-my $date = "$year$mon$mday$hour$min$sec".".0";
-my $res  = "
-<script>
 function Blur$function_name(index) {
 //need this?
 }
 
 function Focus$function_name(subfield_managed) {
-       for (i=0 ; i<document.f.field_value.length ; i++) {
-                if (document.f.tag[i].value == '005') {
-                        document.f.field_value[i].value = '$date';
-                }
-        }
-return 0;
+    document.getElementById(\"$field_number\").value='$date';
+    return 0;
 }
 
 function Clic$function_name(subfield_managed) {
 }
+//]]>
 </script>
 ";
-return ($function_name,$res);
+    return ($function_name,$res);
 }
 
 =head1
@@ -112,8 +83,7 @@ plugin : the true value_builded. The screen that is open in the popup window.
 =cut
 
 sub plugin {
-my ($input) = @_;
-return "";
+    return "";
 }
 
 1;