[Koha-cvs] CVS: koha/bull statecollection.pl,1.3.2.4,1.3.2.5

Henri-Damien LAURENT hdl at users.sourceforge.net
Wed Aug 24 11:02:27 CEST 2005


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

Modified Files:
      Tag: rel_2_2
	statecollection.pl 
Log Message:
Adding a notes field into serial table.
Manage a note for a serial number...
Will allow a librarian to say "contact with supplier for this serial : Will be received on date...  " or anything else.

Index: statecollection.pl
===================================================================
RCS file: /cvsroot/koha/koha/bull/statecollection.pl,v
retrieving revision 1.3.2.4
retrieving revision 1.3.2.5
diff -C2 -r1.3.2.4 -r1.3.2.5
*** statecollection.pl	17 Jun 2005 15:51:54 -0000	1.3.2.4
--- statecollection.pl	24 Aug 2005 09:02:25 -0000	1.3.2.5
***************
*** 26,29 ****
--- 26,30 ----
  my @planneddates = $query->param('planneddate');
  my @status = $query->param('status');
+ my @notes = $query->param('notes');
  my $hassubscriptionexpired = hassubscriptionexpired($subscriptionid);
  if ($op eq 'modsubscriptionhistory') {
***************
*** 37,41 ****
  		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
--- 38,42 ----
  		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