Bugzilla – Attachment 82233 Details for
Bug 21740
Fixed-length fields show _ instead of @ when editing subfields
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21749: Fix import of CSV biblio framework
Bug-21749-Fix-import-of-CSV-biblio-framework.patch (text/plain), 4.02 KB, created by
Tomás Cohen Arazi (tcohen)
on 2018-11-12 18:06:56 UTC
(
hide
)
Description:
Bug 21749: Fix import of CSV biblio framework
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2018-11-12 18:06:56 UTC
Size:
4.02 KB
patch
obsolete
>From 23b0e73f7e6d0deda7b656590d99bb6e51faaa10 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 12 Nov 2018 13:14:19 -0300 >Subject: [PATCH] Bug 21749: Fix import of CSV biblio framework > >Bug 9701 added 2 new columns to the table marc_tag_structure which broke >the import of biblio frameworks if the CSV file was generated with a >previous version. > >Test plan: >- Export a biblio framework from 17.11 >- Import it into 18.05+ > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> > >https://bugs.koha-community.org/show_bug.cgi?id=21740 >--- > C4/ImportExportFramework.pm | 55 ++++++++++++++++--------------------- > 1 file changed, 23 insertions(+), 32 deletions(-) > >diff --git a/C4/ImportExportFramework.pm b/C4/ImportExportFramework.pm >index bc02cca203..ef0b7ae852 100644 >--- a/C4/ImportExportFramework.pm >+++ b/C4/ImportExportFramework.pm >@@ -977,40 +977,31 @@ sub _import_table_csv > seek($dom, $pos, 0); > return 1; > } >- if (scalar(@$fields) == scalar(@arrData)) { >- if (!$fieldsNameRead) { >- # New table, we read the field names >- $fieldsNameRead = 1; >- for (my $i=0; $i < @arrData; $i++) { >- if ($arrData[$i] ne $fields->[$i]) { >- $fieldsNameRead = 0; >- last; >- } >- } >- if ($fieldsNameRead) { >- $fieldsStr = join(',', @$fields); >- $dataStr = ''; >- map { $dataStr .= '?,';} @$fields; >- chop($dataStr) if ($dataStr); >- $updateStr = ''; >- map { $updateStr .= $_ . '=?,';} @$fields; >- chop($updateStr) if ($updateStr); >- } >- } else { >- # Read data >- my $j = 0; >- my %dataFields = (); >- for (@arrData) { >- if ($fields->[$j] eq 'frameworkcode' && $_ ne $frameworkcode) { >- $dataFields{$fields->[$j]} = $frameworkcode; >- $arrData[$j] = $frameworkcode; >- } else { >- $dataFields{$fields->[$j]} = $_; >- } >- $j++ >+ if (!$fieldsNameRead) { >+ # New table, we read the field names >+ $fieldsNameRead = 1; >+ $fields = [@arrData]; >+ $fieldsStr = join(',', @$fields); >+ $dataStr = ''; >+ map { $dataStr .= '?,';} @$fields; >+ chop($dataStr) if ($dataStr); >+ $updateStr = ''; >+ map { $updateStr .= $_ . '=?,';} @$fields; >+ chop($updateStr) if ($updateStr); >+ } else { >+ # Read data >+ my $j = 0; >+ my %dataFields = (); >+ for (@arrData) { >+ if ($fields->[$j] eq 'frameworkcode' && $_ ne $frameworkcode) { >+ $dataFields{$fields->[$j]} = $frameworkcode; >+ $arrData[$j] = $frameworkcode; >+ } else { >+ $dataFields{$fields->[$j]} = $_; > } >- $ok = _processRow_DB($dbh, $db_scheme, $table, $fieldsStr, $dataStr, $updateStr, \@arrData, \%dataFields, $PKArray, \@fieldsPK, $fields2Delete); >+ $j++ > } >+ $ok = _processRow_DB($dbh, $db_scheme, $table, $fieldsStr, $dataStr, $updateStr, \@arrData, \%dataFields, $PKArray, \@fieldsPK, $fields2Delete); > } > $pos = tell($dom); > } >-- >2.19.1
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 21740
:
81733
|
81920
|
81923
|
81925
|
81979
|
82232
|
82233