2 # Copyright 2000-2002 Katipo Communications
3 # Parts copyright 2008-2010 Foundations Bible College
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 no warnings
'redefine'; # otherwise loading up multiple plugins fills the log with subroutine redefine warnings
25 require C4
::Barcodes
::ValueBuilder
;
32 plugin_parameters : other parameters added when the plugin is called by the dopop function
36 sub plugin_parameters
{
37 # my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
43 plugin_javascript : the javascript function called when the user enters the subfield.
44 contain 3 javascript functions :
45 * one called when the field is entered (OnFocus). Named FocusXXX
46 * one called when the field is leaved (onBlur). Named BlurXXX
47 * one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
51 * a variable containing the 3 scripts.
52 the 3 scripts are inserted after the <input> in the html code
56 sub plugin_javascript
{
57 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
58 my $function_name= "barcode".(int(rand(100000))+1);
64 ($args{year
}, $args{mon
}, $args{day
}) = split('-', C4
::Dates
->today('iso'));
65 ($args{tag
},$args{subfield
}) = GetMarcFromKohaField
("items.barcode", '');
66 ($args{loctag
},$args{locsubfield
}) = GetMarcFromKohaField
("items.homebranch", '');
70 my $autoBarcodeType = C4
::Context
->preference("autoBarcode");
71 warn "Barcode type = $autoBarcodeType" if $DEBUG;
72 if ((not $autoBarcodeType) or $autoBarcodeType eq 'OFF') {
73 # don't return a value unless we have the appropriate syspref set
74 return ($function_name,
75 "<script type=\"text/javascript\">
76 // autoBarcodeType OFF (or not defined)
77 function Focus$function_name() { return 0;}
78 function Clic$function_name() { return 0;}
79 function Blur$function_name() { return 0;}
82 if ($autoBarcodeType eq 'annual') {
83 ($nextnum, $scr) = C4
::Barcodes
::ValueBuilder
::annual
::get_barcode
(\
%args);
85 elsif ($autoBarcodeType eq 'incremental') {
86 ($nextnum, $scr) = C4
::Barcodes
::ValueBuilder
::incremental
::get_barcode
(\
%args);
88 elsif ($autoBarcodeType eq 'hbyymmincr') { # Generates a barcode where hb = home branch Code, yymm = year/month catalogued, incr = incremental number, reset yearly -fbcit
89 ($nextnum, $scr) = C4
::Barcodes
::ValueBuilder
::hbyymmincr
::get_barcode
(\
%args);
92 # default js body (if not filled by hbyymmincr)
93 $scr or $scr = <<END_OF_JS;
94 if (\$('#' + id).val() == '') {
95 \$('#' + id).val('$nextnum');
100 <script type
="text/javascript">
103 function Blur
$function_name(index) {
104 //barcode validation might go here
107 function Focus
$function_name(subfield_managed
, id
, force
) {
111 function Clic
$function_name(id
) {
118 return ($function_name, $js);