0239f37984bf5f5b43016a5db288af84466b9f86
[koha.git] / cataloguing / value_builder / ffzg-stocknumber.pl
1 #!/usr/bin/perl
2
3 # Copyright 2010 BibLibre SARL
4 #
5 # This file is part of Koha.
6 #
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
10 # version.
11 #
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.
15 #
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.
19
20 use strict;
21 use warnings;
22 use C4::Auth;
23 use CGI;
24 use C4::Context;
25
26 =head1 DESCRIPTION
27
28 This plugin is specific to FFZG but could be used as a base for similar operations.
29 It is used for stocknumber computation.
30
31 If the user send an empty string, we return a simple incremented stocknumber for current year.
32 If a prefix is submited, we look for the highest stocknumber with this prefix, and return it incremented.
33 In this case, a stocknumber has this form : "YEAR-0009678570".
34  - YEAR is numeric 4-digit year, like 2012
35  - dash
36  - digits, without leading zero
37
38 Required database changes:
39
40   create unique index item_stocknumer on items(stocknumber) ;
41
42   create table ffzg_inventarna_knjiga (
43         id int not null auto_increment primary key,
44         year int not null,
45         num int not null,
46         biblionumber int not null,
47         last_update timestamp default current_timestamp on update current_timestamp,
48         unique index ffzg_inv_br(year,num)
49   ) ;
50
51 =cut
52
53 sub plugin_parameters {
54 }
55
56 sub plugin_javascript {
57     my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
58
59     my $res="
60     <script type='text/javascript'>
61         function Focus$field_number() {
62             return 1;
63         }
64
65         function Blur$field_number() {
66                 return 1;
67         }
68
69         function Clic$field_number() {
70                 var code = document.getElementById('$field_number');
71                 var url = '../cataloguing/plugin_launcher.pl?plugin_name=ffzg-stocknumber.pl&code=' + code.value;
72                 var blurcallbackstocknumber = {
73                     success: function(o) {
74                         var field = document.getElementById('$field_number');
75                         field.value = o.responseText;
76                         return 1;
77                     }
78                 }
79                 var transaction = YAHOO.util.Connect.asyncRequest('GET',url, blurcallbackstocknumber, null);
80             return 1;
81         }
82     </script>
83     ";
84
85     return ($field_number,$res);
86 }
87
88 sub plugin {
89     my ($input) = @_;
90
91
92     my $code = $input->param('code');
93         my ( $year, $num ) = split(/-/,$code);
94
95     $year = (localtime)[5] + 1900 unless $year;
96
97 warn "XXX plugin code = $code";
98
99     my ($template, $loggedinuser, $cookie) = get_template_and_user({
100         template_name   => "cataloguing/value_builder/ajax.tmpl",
101         query           => $input,
102         type            => "intranet",
103         authnotrequired => 0,
104         flagsrequired   => {editcatalogue => '*'},
105         debug           => 1,
106     });
107
108         if ( ! $num ) {
109
110                         my $dbh = C4::Context->dbh;
111
112                         $dbh->begin_work;
113
114                         my $sth = $dbh->prepare("select max(num) from ffzg_inventarna_knjiga where year = ?");
115                         $sth->execute($year);
116                         
117                         my $max = $sth->fetchrow; # return null without any data
118                         $max += 1;
119
120                         $sth = $dbh->prepare("insert into ffzg_inventarna_knjiga (year,num) values (?,?)");
121                         $sth->execute( $year, $max );
122
123                         $dbh->commit;
124
125                         $num = $max;
126
127         }
128
129         $template->param(
130                 return => $year . '-' . $num,
131         );
132
133     output_html_with_http_headers $input, $cookie, $template->output;
134 }
135
136 1;