[Koha-cvs] CVS: koha/bull statecollection.pl,1.6,1.7

Henri-Damien LAURENT hdl at users.sourceforge.net
Wed Aug 24 10:49:06 CEST 2005


Update of /cvsroot/koha/koha/bull
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5561/bull

Modified Files:
	statecollection.pl 
Log Message:
Adding a note field in serial table.
This will allow librarian to mention a note on a peculiar waiting serial number.


Index: statecollection.pl
===================================================================
RCS file: /cvsroot/koha/koha/bull/statecollection.pl,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** statecollection.pl	5 Aug 2005 14:47:23 -0000	1.6
--- statecollection.pl	24 Aug 2005 08:49:03 -0000	1.7
***************
*** 25,28 ****
--- 25,29 ----
  my @serialseqs = $query->param('serialseq');
  my @planneddates = $query->param('planneddate');
+ my @notes = $query->param('notes');
  my @status = $query->param('status');
  
***************
*** 47,51 ****
  		my ($oldstatus) = $sth->fetchrow;
  		if ($serialids[$i]) {
! 			serialchangestatus($serialids[$i],$serialseqs[$i],format_date_in_iso($planneddates[$i]),$status[$i]) unless ($hassubscriptionexpired && $oldstatus == 1);
  		} else {
  			# add a special issue
--- 48,52 ----
  		my ($oldstatus) = $sth->fetchrow;
  		if ($serialids[$i]) {
! 			serialchangestatus($serialids[$i],$serialseqs[$i],format_date_in_iso($planneddates[$i]),$status[$i],$notes[$i]) unless ($hassubscriptionexpired && $oldstatus == 1);
  		} else {
  			# add a special issue





More information about the Koha-cvs mailing list