1st commit to go to zebra.
[koha-ffzg.git] / ISBDdetail.pl
index bdccdd3..831fe63 100755 (executable)
@@ -46,21 +46,18 @@ use CGI;
 use C4::Search;
 use MARC::Record;
 use C4::Biblio;
-use C4::Catalogue;
+use C4::Acquisition;
 use HTML::Template;
 
 my $query=new CGI;
 
 my $dbh=C4::Context->dbh;
 
-my $biblionumber=$query->param('bib');
-my $bibid = $query->param('bibid');
-$bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless $bibid;
-$biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless $biblionumber;
-my $itemtype = &MARCfind_frameworkcode($dbh,$bibid);
+my $biblionumber=$query->param('biblionumber');
+my $itemtype = &MARCfind_frameworkcode($dbh,$biblionumber);
 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
 
-my $record =MARCgetbiblio($dbh,$bibid);
+my $record =MARCgetbiblio($dbh,$biblionumber);
 # open template
 my ($template, $loggedinuser, $cookie)
                = get_template_and_user({template_name => "catalogue/ISBDdetail.tmpl",
@@ -71,24 +68,87 @@ my ($template, $loggedinuser, $cookie)
                             });
 
 my $ISBD = C4::Context->preference('ISBD');
-my @fields = $record->fields();
-foreach my $field (@fields) {
-       my $tag = $field->tag();
-       if ($tag<10) {
-       } else {
-               my @subf = $field->subfields;
-               for my $i (0..$#subf) {
-                       my $subfieldcode = $subf[$i][0];
-                       my $subfieldvalue = $subf[$i][1];
-                       my $tagsubf = $tag.$subfieldcode;
-                       $ISBD =~ s/\[(.?.?.?)$tagsubf(.*?)]/$1$subfieldvalue\[$1$tagsubf$2]$2$3/g;
+# my @blocs = split /\@/,$ISBD;
+# my @fields = $record->fields();
+my $res;
+# foreach my $bloc (@blocs) {
+#      $bloc =~ s/\n//g;
+       my $bloc = $ISBD;
+       my $blocres;
+       foreach my $isbdfield (split /#/,$bloc) {
+#              $isbdfield= /(.?.?.?)/;
+               $isbdfield =~ /(\d\d\d)\|(.*)\|(.*)\|(.*)/;
+               my $fieldvalue=$1;
+               my $textbefore=$2;
+               my $analysestring=$3;
+               my $textafter=$4;
+#              warn "==> $1 / $2 / $3 / $4";
+#              my $fieldvalue=substr($isbdfield,0,3);
+               if ($fieldvalue>0) {
+       #               warn "ERROR IN ISBD DEFINITION at : $isbdfield" unless $fieldvalue;
+#                      warn "FV : $fieldvalue";
+                       my $hasputtextbefore=0;
+                       foreach my $field ($record->field($fieldvalue)) {
+                               my $calculated = $analysestring;
+                               my $tag = $field->tag();
+                               if ($tag<10) {
+                               } else {
+                                       my @subf = $field->subfields;
+                                       for my $i (0..$#subf) {
+                                               my $subfieldcode = $subf[$i][0];
+                                               my $subfieldvalue = get_authorised_value_desc($tag, $subf[$i][0], $subf[$i][1], '', $dbh);;
+                                               my $tagsubf = $tag.$subfieldcode;
+                                               $calculated =~ s/\{(.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue\{$1$tagsubf$2\}$2/g;
+                                       }
+                                       # field builded, store the result
+                                       if ($calculated && !$hasputtextbefore) { # put textbefore if not done
+                                               $blocres .=$textbefore;
+                                               $hasputtextbefore=1
+                                       }
+                                       # remove punctuation at start
+                                       $calculated =~ s/^( |;|:|\.|-)*//g;
+                                       $blocres.=$calculated;
+                               }
+                       }
+                       $blocres .=$textafter if $hasputtextbefore;
+               } else {
+                       $blocres.=$isbdfield;
                }
        }
-}
-$ISBD =~ s/\[(.*?)]//g;
-$ISBD =~ s/\n/<br>/g;
-$template->param(ISBD => $ISBD,
+       $res.=$blocres;
+# }
+$res =~ s/\{(.*?)\}//g;
+$res =~ s/\\n/\n/g;
+$res =~ s/\n/<br\/>/g;
+# remove empty ()
+$res =~ s/\(\)//g;
+$template->param(ISBD => $res,
                                biblionumber => $biblionumber);
 
 output_html_with_http_headers $query, $cookie, $template->output;
 
+sub get_authorised_value_desc ($$$$$) {
+   my($tag, $subfield, $value, $framework, $dbh) = @_;
+
+   #---- branch
+    if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
+       return getbranchname($value);
+    }
+
+   #---- itemtypes
+   if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
+       return ItemType($value);
+    }
+
+   #---- "true" authorized value
+   my $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
+
+   if ($category ne "") {
+       my $sth = $dbh->prepare("select lib from authorised_values where category = ? and authorised_value = ?");
+       $sth->execute($category, $value);
+       my $data = $sth->fetchrow_hashref;
+       return $data->{'lib'};
+   } else {
+       return $value; # if nothing is found return the original value
+   }
+}