Bugzilla – Attachment 22173 Details for
Bug 9192
UNIMARC_sync_date_created_with_marc_biblio.pl field creation
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA]Bug 9192: UNIMARC_sync_date_created_with_marc_biblio.pl field creation
PASSED-QABug-9192-UNIMARCsyncdatecreatedwithmarcbi.patch (text/plain), 5.11 KB, created by
Paul Poulain
on 2013-10-21 18:52:00 UTC
(
hide
)
Description:
[PASSED QA]Bug 9192: UNIMARC_sync_date_created_with_marc_biblio.pl field creation
Filename:
MIME Type:
Creator:
Paul Poulain
Created:
2013-10-21 18:52:00 UTC
Size:
5.11 KB
patch
obsolete
>From aad39abb27971b0b8fc988a3c10cb87ac825c1d4 Mon Sep 17 00:00:00 2001 >From: Fridolyn SOMERS <fridolyn.somers@biblibre.com> >Date: Mon, 3 Dec 2012 14:08:07 +0100 >Subject: [PATCH] [PASSED QA]Bug 9192: > UNIMARC_sync_date_created_with_marc_biblio.pl field > creation > >Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> >Signed-off-by: Mason James <mtj@kohaaloha.com> > >Bug 9192: UNIMARC_sync_date_created_with_marc_biblio.pl field creation (followup) > >Add tests : >if field < 10 it must not have a subfield >if field > 9 is must have a subfield > >Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >Both patches applied, no koha-qa errors. > >Bug 9192: followup fix typo > >Fix typo on usage message. > >Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >Signed-off-by: Paul Poulain <paul.poulain@biblibre.com> >--- > .../UNIMARC_sync_date_created_with_marc_biblio.pl | 53 ++++++++++++++++---- > 1 file changed, 42 insertions(+), 11 deletions(-) > >diff --git a/misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl b/misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl >index 244c2ac..9c3fd01 100755 >--- a/misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl >+++ b/misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl >@@ -52,6 +52,10 @@ $verbose and print "================================\n"; > $date_created_marc = '099c' unless $date_created_marc; > my ( $c_field, $c_subfield ) = _read_marc_code($date_created_marc); > die "date-created-marc '$date_created_marc' is not correct." unless $c_field; >+die "date-created-marc field is greated that 009, it should have a subfield." >+ if ( $c_field > 9 && !defined $c_subfield ); >+die "date-created-marc field is lower that 010, it should not have a subfield." >+ if ( $c_field < 10 && defined $c_subfield ); > if ($verbose) { > print "Date created on $c_field"; > print $c_subfield if defined $c_subfield; # use of defined to allow 0 >@@ -62,6 +66,10 @@ if ($verbose) { > $date_modified_marc = '099d' unless $date_modified_marc; > my ( $m_field, $m_subfield ) = _read_marc_code($date_modified_marc); > die "date-modified-marc '$date_modified_marc' is not correct." unless $m_field; >+die "date-modified-marc field is greated that 009, it should have a subfield." >+ if ( $m_field > 9 && !defined $m_subfield ); >+die "date-modified-marc field is lower that 010, it should not have a subfield." >+ if ( $m_field < 10 && defined $m_subfield ); > die > "When date-created-marc and date-modified-marc are on same field, they should have distinct subfields" > if ( $c_field eq $m_field ) >@@ -133,7 +141,16 @@ sub updateMarc { > > # date created field > unless ($c_marc_field) { >- $biblio->add_fields( new MARC::Field( $c_field, '', '' ) ); >+ if ( defined $c_subfield ) { >+ $biblio->add_fields( >+ new MARC::Field( >+ $c_field, ' ', ' ', $c_subfield => $c_db_value >+ ) >+ ); >+ } >+ else { >+ $biblio->add_fields( new MARC::Field( $c_field, $c_db_value ) ); >+ } > $debug and warn "[WARN] $c_field did not exist."; > $c_marc_field = $biblio->field($c_field); > >@@ -142,24 +159,38 @@ sub updateMarc { > $m_marc_field = $c_marc_field; > } > } >- if ( defined $c_subfield ) { >- $c_marc_field->update( $c_subfield, $c_db_value ); >- } > else { >- $c_marc_field->update($c_db_value); >+ if ( defined $c_subfield ) { >+ $c_marc_field->update( $c_subfield, $c_db_value ); >+ } >+ else { >+ $c_marc_field->update($c_db_value); >+ } > } > > # date last modified field > unless ($m_marc_field) { >- $biblio->add_fields( new MARC::Field( $m_field, '', '' ) ); >+ if ( defined $m_subfield ) { >+ $biblio->add_fields( >+ new MARC::Field( >+ $m_field, ' ', ' ', $m_subfield => $m_db_value >+ ) >+ ); >+ } >+ else { >+ $biblio->add_fields( new MARC::Field( $m_field, $m_db_value ) ); >+ } >+ > $debug and warn "[WARN] $m_field did not exist."; > $m_marc_field = $biblio->field($m_field); > } >- if ( defined $m_subfield ) { >- $m_marc_field->update( $m_subfield, $m_db_value ); >- } > else { >- $m_marc_field->update($m_db_value); >+ if ( defined $m_subfield ) { >+ $m_marc_field->update( $m_subfield, $m_db_value ); >+ } >+ else { >+ $m_marc_field->update($m_db_value); >+ } > } > > # apply to databse >@@ -222,7 +253,7 @@ UNIMARC specific. > Parameters: > --help or -h show this message > --verbose or -v verbose logging >- --run run the command else modifications will not be applyed to database >+ --run run the command else modifications will not be applied to database > --where (optional) use this to limit execution to some biblios : > write a SQL where clause using biblio and/or biblioitems fields > --date-created-marc or c (optional) date created MARC field and optional subfield, >-- >1.7.9.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 9192
:
13840
|
14281
|
14939
|
15327
|
20866
|
20867
| 22173