Going to MARC 1.4...
authortipaul <tipaul>
Fri, 14 Jun 2002 16:47:33 +0000 (16:47 +0000)
committertipaul <tipaul>
Fri, 14 Jun 2002 16:47:33 +0000 (16:47 +0000)
commit3d7df52b0dfe9bbcf5819db2b5d8e0ae74156dbd
tree8da7c45137c85be14767ad9dd960798fb9c60ece
parentc5c559fc55c2751006716a3d0bf5e858c6f8bbff
Going to MARC 1.4...

0- Requires MARC::Record from cpan to work

1- divided Catalogue.pm in 2 parts :
Biblio.pm ,that contains biblio management
Catalogue.pm, that contains acquisition management.
When ended, they will replace the Acquisition.pm package

2- Created MARCxxx functions :
* MARCgetbiblio : retrieves a MARC::Record from the bibid passed in parameter (working, see test.pl script)
* MARCaddbiblio : creates a MARC-DB entry, for a MARC::Record given as parameter. (working)
* MARCmodsubfield : modifies a subfield for a given subfieldid
* MARCfingsubfield : retrieves a subfieldvalue from a bibid/tag/subfield
* MARCaddsubfield : adds a subfield to biblio into the DB
* MARCkoha2marc : builds a MARC::Record, given a biblionumber, a biblioitemnumber and/or an itemnumber. (working).

TODO :
A lot ;-))))
For instance, you can create only a MARC-DB entry from a old-DB entry. Note some questions are still to solve around bibid (old-DB/MARC-DB)...
C4/Biblio.pm [new file with mode: 0644]
C4/Catalogue.pm