[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2018-10-29 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

Alex Buckley  changed:

   What|Removed |Added

 Status|Needs Signoff   |Patch doesn't apply
 CC||alexbuck...@catalyst.net.nz

--- Comment #7 from Alex Buckley  ---
Can you please rebase your patch it is currently not applying cleanly on
master, as the below output shows:

Apply? [(y)es, (n)o, (i)nteractive] y
Applying: Bug 14420 : bulkmarcimport.pl - Some problems
Using index info to reconstruct a base tree...
M   misc/migration_tools/bulkmarcimport.pl
Falling back to patching base and 3-way merge...
Auto-merging misc/migration_tools/bulkmarcimport.pl
CONFLICT (content): Merge conflict in misc/migration_tools/bulkmarcimport.pl
Failed to merge in the changes.
Patch failed at 0001 Bug 14420 : bulkmarcimport.pl - Some problems
The copy of the patch that failed is found in:
   /home/vagrant/kohaclone/.git/rebase-apply/patch
When you have resolved this problem run "git bz apply --continue".
If you would prefer to skip this patch, instead run "git bz apply --skip".
To restore the original branch and stop patching run "git bz apply --abort".
Patch left in /tmp/Bug-14420--bulkmarcimportpl---Some-problems-T8e2dA.patch
You have new mail in /var/mail/vagrant

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2018-04-04 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

--- Comment #6 from M. Tompsett  ---
(In reply to Vitor Fernandes from comment #0)
> PROBLEM 1
> 
> If a record as some than one ISBN, the values are recorded in database like
> 'isbn1 | isbn2 | isbn3'.
> 
> In the script the ISBN match are only checking for exact ISBN matching.

This is because:
020 - International Standard Book Number (R)
-- The 020 field is repeatable. This is clearly bad data, but yes, we should
attempt to parse for it.

I don't like the multiple likes fix provided here.
I would prefer a:
my @isbns = parseIsbnField($isbn_field_value);
foreach my $isbn (@isbns) {
search for the individual isbn
...
}

sub parseIsbnField {
my ($isbn_data) = @_;
see if we can split out some ISBNs. ...
return an array of the results.
}

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2017-10-02 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

Magnus Enger  changed:

   What|Removed |Added

   See Also||https://bugs.koha-community
   ||.org/bugzilla3/show_bug.cgi
   ||?id=17608

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2016-08-16 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

M. Tompsett  changed:

   What|Removed |Added

 CC||mtomp...@hotmail.com
  Attachment #40362|0   |1
is obsolete||

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2015-11-10 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

Heather Braum  changed:

   What|Removed |Added

 CC||hbr...@nekls.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2015-08-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

Vitor Fernandes vfernan...@keep.pt changed:

   What|Removed |Added

  Attachment #41338|0   |1
is obsolete||

--- Comment #5 from Vitor Fernandes vfernan...@keep.pt ---
Created attachment 41339
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41339action=edit
Bug 14420 : bulkmarcimport.pl - Some problems

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

Test plan:

- Add one record with two ISBN using bulkmarcimport
- Add the same record using bulkmarcimport with ISBN comparing
- The comparing of ISBN isn't working because the bulkmarcimport are trying to
check if isbn1 is in the column isbn of biblio table (check if equal). The
column isbn of the first record is isbn1 | isbn2.

- Add one record with one ISBN using bulkmarcimport
- Add the same record using bulkmarcimport and ISBN comparing
- The first record will be updated but the items of the second record will not
be added to the first one

- Apply the patch

- Add one record with two ISBN using bulkmarcimport
- Add the same record using bulkmarcimport with ISBN comparing
- The comparing of ISBN will work because the bulkmarcimport will use like
comparing instead of equal 

- Add one record with one ISBN using bulkmarcimport
- Add the same record using bulkmarcimport with ISBN comparing and
updateadditems
- The first record will be updated and the items of the second record will be
added to the first one

Created by: Vitor Fernandes vfernan...@keep.pt
Sponsored by: KEEP SOLUTIONS

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2015-08-04 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

--- Comment #4 from Vitor Fernandes vfernan...@keep.pt ---
Created attachment 41338
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41338action=edit
Bug 14420 : bulkmarcimport.pl - Some problems

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

Created by: Vitor Fernandes vfernan...@keep.pt
Sponsored by: KEEP SOLUTIONS

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2015-07-09 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

--- Comment #3 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Ah, also make sure test plan and problem description are part of your commit
message!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2015-07-09 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

--- Comment #2 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Hi Vitor,
can you please add a test plan? Some sample records might also be helpful to
make this easier to test.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2015-07-09 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

Katrin Fischer katrin.fisc...@bsz-bw.de changed:

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de
Version|unspecified |master

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2015-06-19 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

Vitor Fernandes vfernan...@keep.pt changed:

   What|Removed |Added

 Status|NEW |Needs Signoff
   Assignee|gmcha...@gmail.com  |vfernan...@keep.pt

--- Comment #1 from Vitor Fernandes vfernan...@keep.pt ---
Created attachment 40362
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=40362action=edit
bulkmarcimport.pl

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2015-06-19 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

Vitor Fernandes vfernan...@keep.pt changed:

   What|Removed |Added

   Patch complexity|Trivial patch   |Small patch

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14420] bulkmarcimport.pl - Some problems

2015-06-19 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14420

Vitor Fernandes vfernan...@keep.pt changed:

   What|Removed |Added

   Patch complexity|--- |Trivial patch
  Change sponsored?|--- |Sponsored

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/