Some usefuls functions were commented.
[koha_ffzg] / opac / opac-ISBDdetail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
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 with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 # $Id$
21
22 =head1 NAME
23
24 MARCdetail.pl : script to show a biblio in MARC format
25
26
27 =head1 DESCRIPTION
28
29 This script needs a biblionumber in bib parameter (bibnumber
30 from koha style DB.  Automaticaly maps to marc biblionumber).
31
32 It shows the biblio in a (nice) MARC format depending on MARC
33 parameters tables.
34
35 The template is in <templates_dir>/catalogue/MARCdetail.tmpl.
36 this template must be divided into 11 "tabs".
37
38 The first 10 tabs present the biblio, the 11th one presents
39 the items attached to the biblio
40
41 =head1 FUNCTIONS
42
43 =over 2
44
45 =cut
46
47
48 use strict;
49 require Exporter;
50 use C4::Auth;
51 use C4::Context;
52 use C4::Output;
53 use C4::Interface::CGI::Output;
54 use CGI;
55 use C4::Search;
56 use MARC::Record;
57 use C4::Biblio;
58 use C4::Acquisition;
59 use C4::Serials; #uses getsubscriptionfrom biblionumber
60 use HTML::Template;
61
62 my $query=new CGI;
63
64 my $dbh=C4::Context->dbh;
65
66 my $biblionumber=$query->param('bib');
67 my $bibid = $query->param('bibid');
68 $bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless $bibid;
69 $biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless $biblionumber;
70 my $itemtype = &MARCfind_frameworkcode($dbh,$bibid);
71 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
72
73 my $record =MARCgetbiblio($dbh,$bibid);
74
75 #coping with subscriptions
76 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
77 my $dat = MARCmarc2koha($dbh,$record);
78 my @subscriptions = GetSubscriptions($dat->{title},$dat->{issn},$biblionumber);
79 my @subs;
80 foreach my $subscription (@subscriptions){
81         my %cell;
82         $cell{subscriptionid}= $subscription->{subscriptionid};
83         $cell{subscriptionnotes}= $subscription->{notes};
84         #get the three latest serials.
85         $cell{latestserials}=GetLatestSerials($subscription->{subscriptionid},3);
86         push @subs, \%cell;
87 }
88
89 # open template
90 my ($template, $loggedinuser, $cookie)
91                 = get_template_and_user({template_name => "opac-ISBDdetail.tmpl",
92                              query => $query,
93                              type => "opac",
94                              authnotrequired => 1,
95                              debug => 1,
96                              });
97 $template->param(
98                                 subscriptions => \@subs,
99                                 subscriptionsnumber => $subscriptionsnumber,
100 );
101
102 my $ISBD = C4::Context->preference('ISBD');
103 # my @blocs = split /\@/,$ISBD;
104 # my @fields = $record->fields();
105 my $res;
106 # foreach my $bloc (@blocs) {
107 #       $bloc =~ s/\n//g;
108         my $bloc = $ISBD;
109         my $blocres;
110         foreach my $isbdfield (split /#/,$bloc) {
111 #               $isbdfield= /(.?.?.?)/;
112                 $isbdfield =~ /(\d\d\d)\|(.*)\|(.*)\|(.*)/;
113                 my $fieldvalue=$1;
114                 my $textbefore=$2;
115                 my $analysestring=$3;
116                 my $textafter=$4;
117 #               warn "==> $1 / $2 / $3 / $4";
118 #               my $fieldvalue=substr($isbdfield,0,3);
119                 if ($fieldvalue>0) {
120         #               warn "ERROR IN ISBD DEFINITION at : $isbdfield" unless $fieldvalue;
121 #                       warn "FV : $fieldvalue";
122                         my $hasputtextbefore=0;
123                         foreach my $field ($record->field($fieldvalue)) {
124                                 my $calculated = $analysestring;
125                                 my $tag = $field->tag();
126                                 if ($tag<10) {
127                                 } else {
128                                         my @subf = $field->subfields;
129                                         for my $i (0..$#subf) {
130                                                 my $subfieldcode = $subf[$i][0];
131                                                 my $subfieldvalue = get_authorised_value_desc($tag, $subf[$i][0], $subf[$i][1], '', $dbh);
132                                                 my $tagsubf = $tag.$subfieldcode;
133                                                 $calculated =~ s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
134                                         }
135                                         # field builded, store the result
136                                         if ($calculated && !$hasputtextbefore) { # put textbefore if not done
137                                                 $blocres .=$textbefore;
138                                                 $hasputtextbefore=1
139                                         }
140                                         # remove punctuation at start
141                                         $calculated =~ s/^( |;|:|\.|-)*//g;
142                                         $blocres.=$calculated;
143                                 }
144                         }
145                         $blocres .=$textafter if $hasputtextbefore;
146                 } else {
147                         $blocres.=$isbdfield;
148                 }
149         }
150         $res.=$blocres;
151 # }
152 $res =~ s/\{(.*?)\}//g;
153 $res =~ s/\\n/\n/g;
154 $res =~ s/\n/<br\/>/g;
155 # remove empty ()
156 $res =~ s/\(\)//g;
157 $template->param(ISBD => $res,
158                                 biblionumber => $biblionumber);
159
160 output_html_with_http_headers $query, $cookie, $template->output;
161
162 sub get_authorised_value_desc ($$$$$) {
163    my($tag, $subfield, $value, $framework, $dbh) = @_;
164
165    #---- branch
166     if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
167        return getbranchname($value);
168     }
169
170    #---- itemtypes
171    if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
172        return ItemType($value);
173     }
174
175    #---- "true" authorized value
176    my $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
177
178    if ($category ne "") {
179        my $sth = $dbh->prepare("select lib from authorised_values where category = ? and authorised_value = ?");
180        $sth->execute($category, $value);
181        my $data = $sth->fetchrow_hashref;
182        return $data->{'lib'};
183    } else {
184        return $value; # if nothing is found return the original value
185    }
186 }