Bugzilla – Attachment 48205 Details for
Bug 15840
Import borrowers tool explodes if userid already exists
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15840: Catch errors if userid already exists when importing patrons
Bug-15840-Catch-errors-if-userid-already-exists-wh.patch (text/plain), 2.26 KB, created by
Jonathan Druart
on 2016-02-18 10:56:47 UTC
(
hide
)
Description:
Bug 15840: Catch errors if userid already exists when importing patrons
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2016-02-18 10:56:47 UTC
Size:
2.26 KB
patch
obsolete
>From c34c06bddfa47efc771f3a0603ace21b781bfce1 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 17 Feb 2016 16:21:50 +0000 >Subject: [PATCH] Bug 15840: Catch errors if userid already exists when > importing patrons > >Import borrowers tool explodes if userid already exists. This error >should be caught to avoid the script to explodes. > >Test plan: >Import a csv file with the same userid used >Without this patch, you will get a DBIx::class exception "Duplicate >entry ' for key 'userid'" >With this patch applied, these patrons won't be inserted but an error >will be nicely displayed in the error list. > >Note that it would be easy to insert the patrons anyway and generate a >userid based on the surname and firstname. >--- > koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt | 5 +++++ > tools/import_borrowers.pl | 7 +++++++ > 2 files changed, 12 insertions(+) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt >index fa955da..f31d7da 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt >@@ -90,6 +90,11 @@ > [% IF ERROR.borrowernumber %] (for patron with borrowernumber [% ERROR.borrowernumber %])[% END %] > </li> > [% END %] >+ [% IF ERROR.duplicate_userid %] >+ <li class="line_error"> >+ Userid [% ERROR.userid %] is already used by another patron or is empty. >+ </li> >+ [% END %] > [% END %] > </ul> > </div> >diff --git a/tools/import_borrowers.pl b/tools/import_borrowers.pl >index 42e7a8e..3e67439 100755 >--- a/tools/import_borrowers.pl >+++ b/tools/import_borrowers.pl >@@ -253,6 +253,13 @@ if ( $uploadborrowers && length($uploadborrowers) > 0 ) { > next; > } > >+ # generate a proper login if none provided >+ if ( $borrower{userid} eq '' || !Check_Userid( $borrower{userid} ) ) { >+ push @errors, { duplicate_userid => 1, userid => $borrower{userid} }; >+ $invalid++; >+ next LINE; >+ } >+ > > if ($borrowernumber) { > # borrower exists >-- >2.7.0
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 15840
:
48164
|
48205
|
48303
|
48306
|
48307
|
49330