add in parameters a "check marc" link.
[koha.git] / admin / checkmarc.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 use C4::Output;
23 use C4::Charset;
24 use C4::Auth;
25 use CGI;
26 use C4::Search;
27 use C4::Context;
28 use C4::Biblio;
29 use HTML::Template;
30
31 my $input = new CGI;
32
33 my ($template, $borrowernumber, $cookie)
34     = get_template_and_user({template_name => "parameters/checkmarc.tmpl",
35                              query => $input,
36                              type => "intranet",
37                              authnotrequired => 0,
38                              flagsrequired => {parameters => 1},
39                              debug => 1,
40                              });
41
42 my $dbh = C4::Context->dbh;
43 my $total;
44 # checks itemnum field
45 my $sth = $dbh->prepare("select tab from marc_subfield_structure where kohafield=\"items.itemnumber\"");
46 $sth->execute;
47 my ($res) = $sth->fetchrow;
48 if ($res==-1) {
49         $template->param(itemnum => 0);
50 } else {
51         $template->param(itemnum => 1);
52         $total++;
53 }
54
55 # checks biblio.biblionumber and biblioitem.biblioitemnumber (same tag and tab=-1)
56 $sth = $dbh->prepare("select tagfield,tab from marc_subfield_structure where kohafield=\"biblio.biblionumber\"");
57 $sth->execute;
58 my $tab;
59 ($res,$tab) = $sth->fetchrow;
60 $sth = $dbh->prepare("select tagfield,tab from marc_subfield_structure where kohafield=\"biblioitems.biblioitemnumber\"");
61 $sth->execute;
62 my ($res2,$tab2) = $sth->fetchrow;
63 if ($res && $res2 && ($res eq $res2) && $tab==-1 && $tab2==-1) {
64         $template->param(biblionumber => 0);
65 } else {
66         $template->param(biblionumber => 1);
67         $total++;
68 }
69
70 # checks all item fields are in the same tag and in tab 10
71 $sth = $dbh->prepare("select tagfield,tab,kohafield from marc_subfield_structure where kohafield like \"items.%\"");
72 $sth->execute;
73 my $field;
74 ($res,$res2,$field) = $sth->fetchrow;
75 my $tagfield = $res;
76 my $tab = $res2;
77 my $subtotal=0;
78 while (($res,$res2,$field) = $sth->fetchrow) {
79         # (ignore itemnumber, that must be in -1 tab)
80         if (($res ne $tagfield or $res2 ne $tab ) && $field ne "items.itemnumber") {
81                 $subtotal++;
82         }
83 }
84 if ($subtotal eq 0) {
85         $template->param(itemfields => 0);
86 } else {
87         $template->param(itemfields => 1);
88         $total++;
89 }
90 # checks biblioitems.itemtype must be mapped and use authorised_value=itemtype
91 $sth = $dbh->prepare("select tagfield,tab,authorised_value from marc_subfield_structure where kohafield = \"biblioitems.itemtype\"");
92 $sth->execute;
93 ($res,$res2,$field) = $sth->fetchrow;
94 warn "==> $res / $res2 / $field";
95 if ($res && $res2>=0 && $field eq "itemtypes") {
96         $template->param(itemtype => 0);
97 } else {
98         $template->param(itemtype => 1);
99         $total++;
100 }
101
102 # checks items.homebranch must be mapped and use authorised_value=branches
103 $sth = $dbh->prepare("select tagfield,tab,authorised_value from marc_subfield_structure where kohafield = \"items.homebranch\"");
104 $sth->execute;
105 ($res,$res2,$field) = $sth->fetchrow;
106 if ($res && $res2 eq 10 && $field eq "branches") {
107         $template->param(branch => 0);
108 } else {
109         $template->param(branch => 1);
110         $total++;
111 }
112 # checks items.homebranch must be mapped and use authorised_value=branches
113 $sth = $dbh->prepare("select tagfield,tab,authorised_value from marc_subfield_structure where kohafield = \"items.holdingbranch\"");
114 $sth->execute;
115 ($res,$res2,$field) = $sth->fetchrow;
116 if ($res && $res2 eq 10 && $field eq "branches") {
117         $template->param(holdingbranch => 0);
118 } else {
119         $template->param(holdingbranch => 1);
120         $total++;
121 }
122
123 $template->param(total => $total);
124 print $input->header(
125     -type => guesstype($template->output),
126     -cookie => $cookie
127 ), $template->output;