koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] CVS: koha/acqui.simple additem.pl,1.27.2.7,1.27.2.8


From: Paul POULAIN
Subject: [Koha-cvs] CVS: koha/acqui.simple additem.pl,1.27.2.7,1.27.2.8
Date: Wed, 05 Oct 2005 05:41:44 -0700

Update of /cvsroot/koha/koha/acqui.simple
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16943/acqui.simple

Modified Files:
      Tag: rel_2_2
        additem.pl 
Log Message:
fixing bug caused by sort{} added by hdl 2 days ago : when items were 
reordered, itemnum were not. Thus, sometimes, items were not pointing to the 
right itemnumber & modif/deletion was buggy !

Index: additem.pl
===================================================================
RCS file: /cvsroot/koha/koha/acqui.simple/additem.pl,v
retrieving revision 1.27.2.7
retrieving revision 1.27.2.8
diff -C2 -r1.27.2.7 -r1.27.2.8
*** additem.pl  4 Oct 2005 10:13:16 -0000       1.27.2.7
--- additem.pl  5 Oct 2005 12:41:41 -0000       1.27.2.8
***************
*** 61,64 ****
--- 61,65 ----
  my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
  my $record = MARCgetbiblio($dbh,$bibid);
+ warn "==>".$record->as_formatted;
  my $oldrecord = MARCmarc2koha($dbh,$record);
  my $itemrecord;
***************
*** 153,157 ****
  my ($branchtagfield,$branchtagsubfield) = 
&MARCfind_marc_from_kohafield($dbh,"items.homebranch",$itemtype);
  
- my @itemnums; # array to store itemnums
  foreach my $field (@fields) {
        next if ($field->tag()<10);
--- 154,157 ----
***************
*** 170,174 ****
                        }
                }
!               push @itemnums,$this_row{$subf[$i][0]} =$subf[$i][1] if 
($field->tag() eq $itemtagfield && $subf[$i][0] eq $itemtagsubfield);
        }
        if (%this_row) {
--- 170,174 ----
                        }
                }
!               $this_row{itemnum} = $subf[$i][1] if ($field->tag() eq 
$itemtagfield && $subf[$i][0] eq $itemtagsubfield);
        }
        if (%this_row) {
***************
*** 195,199 ****
        my %row_data;
        $row_data{item_value} = $items_data;
!       $row_data{itemnum} = $itemnums[$i];
        #reporting this_row values
        $row_data{'nomod'} = $big_array[$i]{'nomod'};
--- 195,199 ----
        my %row_data;
        $row_data{item_value} = $items_data;
!       $row_data{itemnum} = $big_array[$i]->{itemnum};
        #reporting this_row values
        $row_data{'nomod'} = $big_array[$i]{'nomod'};




reply via email to

[Prev in Thread] Current Thread [Next in Thread]