bugfix : returning to tag after modifying the tag.
[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::Interface::CGI::Output;
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
72 $sth = $dbh->prepare("select tagfield,tab,kohafield from marc_subfield_structure where kohafield like \"items.%\"");
73 $sth->execute;
74 my $field;
75 ($res,$res2,$field) = $sth->fetchrow;
76 my $tagfield = $res;
77 my $tab = $res2;
78 my $subtotal=0;
79 while (($res,$res2,$field) = $sth->fetchrow) {
80         # (ignore itemnumber, that must be in -1 tab)
81         if (($res ne $tagfield or $res2 ne $tab ) && $res2 ne -1) {
82                 $subtotal++;
83         }
84 }
85 $sth = $dbh->prepare("select kohafield from marc_subfield_structure where tagfield=?");
86 $sth->execute($tagfield);
87 while (($res2) = $sth->fetchrow) {
88         if (!$res2 || $res2 =~ /^items/) {
89         } else {
90                 $subtotal++;
91         }
92 }
93 if ($subtotal eq 0) {
94         $template->param(itemfields => 0);
95 } else {
96         $template->param(itemfields => 1);
97         $total++;
98 }
99 # checks biblioitems.itemtype must be mapped and use authorised_value=itemtype
100 $sth = $dbh->prepare("select tagfield,tab,authorised_value from marc_subfield_structure where kohafield = \"biblioitems.itemtype\"");
101 $sth->execute;
102 ($res,$res2,$field) = $sth->fetchrow;
103 if ($res && $res2>=0 && $field eq "itemtypes") {
104         $template->param(itemtype => 0);
105 } else {
106         $template->param(itemtype => 1);
107         $total++;
108 }
109
110 # checks items.homebranch must be mapped and use authorised_value=branches
111 $sth = $dbh->prepare("select tagfield,tab,authorised_value from marc_subfield_structure where kohafield = \"items.homebranch\"");
112 $sth->execute;
113 ($res,$res2,$field) = $sth->fetchrow;
114 if ($res && $res2 eq 10 && $field eq "branches") {
115         $template->param(branch => 0);
116 } else {
117         $template->param(branch => 1);
118         $total++;
119 }
120 # checks items.homebranch must be mapped and use authorised_value=branches
121 $sth = $dbh->prepare("select tagfield,tab,authorised_value from marc_subfield_structure where kohafield = \"items.holdingbranch\"");
122 $sth->execute;
123 ($res,$res2,$field) = $sth->fetchrow;
124 if ($res && $res2 eq 10 && $field eq "branches") {
125         $template->param(holdingbranch => 0);
126 } else {
127         $template->param(holdingbranch => 1);
128         $total++;
129 }
130
131 # checks that itemtypes & branches tables are not empty
132 $sth = $dbh->prepare("select count(*) from itemtypes");
133 $sth->execute;
134 ($res) = $sth->fetchrow;
135 unless ($res) {
136         $template->param(itemtypes_empty =>1);
137         $total++;
138 }
139
140 $sth = $dbh->prepare("select count(*) from branches");
141 $sth->execute;
142 ($res) = $sth->fetchrow;
143 unless ($res) {
144         $template->param(branches_empty =>1);
145         $total++;
146 }
147
148 $template->param(total => $total);
149 output_html_with_http_headers $input, $cookie, $template->output;