[Koha-bugs] [Bug 30303] Add ability to select which values to retain when merging patrons

2026-02-11 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #24 from Brendan Lawlor  ---
Thanks for the feedback Lari. The ability to copy the password would be useful,
but I would prefer to get the basic functionality passed QA first and file a
follow up bug for adding the ability to copy the password.

I started working on the case to handle empty values and actual hyphens in the
data and based on the way the diff works and how this patch was written it's a
little gnarly. It might be better if instead of the form sending the values for
each field to be copied, it just sends a 1 and the data for the fields to be
copied is retrieved from the patron object on the backend.

I think the same idea would work well for the copying the password too

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2026-02-04 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #23 from Lari Taskula  ---
We noticed that this doesn't support merging passwords from the source record
to the destination record.

Not sure if that is out of scope for this Bug, as the original merging
functionality did not support it either.

But it would be useful and I don't see why it couldn't be there. We can just
display *** instead of the password hash.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-11-20 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #22 from Brendan Lawlor  ---
Thanks for testing this some more Lari!


I agree it's better to have the first name and surname as explicit separate
fields. 

Thanks for finding the bug with the empty fields too. I will take another look
and make a follow up.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-11-20 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Lari Taskula  changed:

   What|Removed |Added

 Status|Needs Signoff   |Failed QA

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-11-20 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #21 from Lari Taskula  ---
(In reply to Lari Taskula from comment #20)
> And if we receive and empty string in merge-patrons.pl, we should probably
> delete it from $data so that it never gets passed to $keeper->set() and does
> not uselessly become '' instead of NULL in the database.
Correction, not to be deleted, but set as undef.

But I just noticed the diffString does not handle empty strings as I expected
(just displaying an empty green/red box), so we need something else.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-11-20 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #20 from Lari Taskula  ---
I also noticed that an empty field is represented with a hyphen (character -),
which is okay, but when we select it to be retained, the hyphen actually gets
inserted into the selected field. I think the expected behavior is to clear the
field instead.

Then again, although I'm not sure how realistic scenario it is, but someone may
actually want to retain the hyphen, so we also shouldn't clear it in every
case.

Perhaps we should have a different value, for example an empty string,
representing the field to be cleared.

And if we receive and empty string in merge-patrons.pl, we should probably
delete it from $data so that it never gets passed to $keeper->set() and does
not uselessly become '' instead of NULL in the database.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-11-20 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #19 from Lari Taskula  ---
We could've of course just swapped the $name indices in merge-patrons.pl, but I
think it is better to be very explicit with the fields we are selecting.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-11-20 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #18 from Lari Taskula  ---
Created attachment 189752
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189752&action=edit
Bug 30303: (follow-up) Split surname and firstname as separate fields

To test:
1. Follow-original test plan
2. Observe "Name" field has now been split into "Surname" and "First name"
fields
3. Merge patrons
4. Observe the selected surname and firstname have been preserved

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-11-20 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Lari Taskula  changed:

   What|Removed |Added

 Status|Failed QA   |Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-11-20 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Lari Taskula  changed:

   What|Removed |Added

 Status|Signed Off  |Failed QA

--- Comment #17 from Lari Taskula  ---
We've just discovered that the merge is placing firstname as surname and vice
versa.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-10-18 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #12 from Brendan Lawlor  ---
On second thought I think the better solution is to only copy the values if the
merge returns results.

That way if you use the back button you'll still see the page from the cache,
but if you try to select more values to copy and submit the form again no
values will be copied. That way the No valid patrons to merge were found
message is accurate.

Thanks for testing and feedback Lari!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-10-18 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Lari Taskula  changed:

   What|Removed |Added

 Attachment #186382|0   |1
is obsolete||

--- Comment #13 from Lari Taskula  ---
Created attachment 187306
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187306&action=edit
Bug 30303: Add ui for copying values when merging patrons

When merging two patrons this patch adds a new checkbox to
'Copy values from the record to be deleted'

To test:
- Apply patches and restart_all
1. From select two patrons and click 'Merge selected patrons'
2. Select one of the records
3. Check the new box to 'Copy values from the record to be deleted'
4. A diff of the two patrons is shown with checkboxes for each field
5. Confirm checking and un-checking the boxes updates the diff as expected
6. Confirm changing the patron selection updates the diff as expected.
7. Confirm un-checking and re-checking the Copy values from the record to be
deleted
   resets the check boxes for the fields to copy
8. Select some fields to copy values and click merge patrons
9. Confirm the values were copied as expected

Sponsored-by: CLAMS
Signed-off-by: Lari Taskula 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-10-17 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Brendan Lawlor  changed:

   What|Removed |Added

 Attachment #187269|0   |1
is obsolete||

--- Comment #11 from Brendan Lawlor  ---
Created attachment 187295
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187295&action=edit
Bug 30303: (follow-up) Only copy values if merge returns results

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-10-17 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #9 from Brendan Lawlor  ---
Created attachment 187269
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187269&action=edit
Bug 30303: (follow-up) Stop the back button from loading from cache

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-10-02 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Lari Taskula  changed:

   What|Removed |Added

 Attachment #187295|0   |1
is obsolete||

--- Comment #16 from Lari Taskula  ---
Created attachment 187309
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187309&action=edit
Bug 30303: (follow-up) Only copy values if merge returns results

Signed-off-by: Lari Taskula 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-10-02 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Lari Taskula  changed:

   What|Removed |Added

 Attachment #186383|0   |1
is obsolete||

--- Comment #14 from Lari Taskula  ---
Created attachment 187307
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187307&action=edit
Bug 30303: Copy values to keeper record when merging patrons

Signed-off-by: Lari Taskula 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-10-02 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Lari Taskula  changed:

   What|Removed |Added

 Attachment #186572|0   |1
is obsolete||

--- Comment #15 from Lari Taskula  ---
Created attachment 187308
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=187308&action=edit
Bug 30303: (follow-up) Update diff highlighting instead of swapping columns

This patch makes the ui more visually consistent and intuitive

Signed-off-by: Lari Taskula 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-10-02 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Lari Taskula  changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-10-02 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #10 from Brendan Lawlor  ---
(In reply to Lari Taskula from comment #8)
> This is so cool!

Thanks Lari!

> I noticed that after merging, if I hit the browser's back button, it takes
> me back to the field selection where I am once again able to select the
> fields to retain. Surprisingly, the new choices would still apply after
> hitting "Merge" the second time, even if Koha says "No valid patrons to
> merge were found.". But in some sense this feels more like a feature than a
> bug, because I might have forgotten to select something and this allows me
> to correct my error.

This is sort of just the nature of the browser using a web app like Koha.
Different browsers may behave differently too. 

I understand how in this case it could be confusing though.

I think this might be better handled on the server side with HTTP Cache-Control
headers like no-cache, no-store or must-revalidate, but this could also be done
with javascript to force a reload when the browser's back button is used.

I'm not sure if it's necessary, but the last patch forces a reload when you use
the back button like this:

// Stop the back button loading from cache
window.onpageshow = function (e) {
if (e.persisted) {
window.location.reload();
}
}

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-10-02 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Lari Taskula  changed:

   What|Removed |Added

 CC||[email protected]

--- Comment #8 from Lari Taskula  ---
This is so cool!

I noticed that after merging, if I hit the browser's back button, it takes me
back to the field selection where I am once again able to select the fields to
retain. Surprisingly, the new choices would still apply after hitting "Merge"
the second time, even if Koha says "No valid patrons to merge were found.". But
in some sense this feels more like a feature than a bug, because I might have
forgotten to select something and this allows me to correct my error.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-09-19 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #6 from Brendan Lawlor  ---
Created attachment 186383
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=186383&action=edit
Bug 30303: Copy values to keeper record when merging patrons

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-09-18 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #7 from Brendan Lawlor  ---
Created attachment 186572
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=186572&action=edit
Bug 30303: (follow-up) Update diff highlighting instead of swapping columns

This patch makes the ui more visually consistent and intuitive

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-09-17 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Brendan Lawlor  changed:

   What|Removed |Added

   Assignee|[email protected] |[email protected]
   |ity.org |

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-09-12 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

--- Comment #5 from Brendan Lawlor  ---
Created attachment 186382
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=186382&action=edit
Bug 30303: Add ui for copying values when merging patrons

When merging two patrons this patch adds a new checkbox to
'Copy values from the record to be deleted'

To test:
- Apply patches and restart_all
1. From select two patrons and click 'Merge selected patrons'
2. Select one of the records
3. Check the new box to 'Copy values from the record to be deleted'
4. A diff of the two patrons is shown with checkboxes for each field
5. Confirm checking and un-checking the boxes updates the diff as expected
6. Confirm changing the patron selection updates the diff as expected.
7. Confirm un-checking and re-checking the Copy values from the record to be
deleted
   resets the check boxes for the fields to copy
8. Select some fields to copy values and click merge patrons
9. Confirm the values were copied as expected

Sponsored-by: CLAMS

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-09-12 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Brendan Lawlor  changed:

   What|Removed |Added

   Patch complexity|--- |Small patch
 Status|NEW |Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-09-11 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Paul Derscheid  changed:

   What|Removed |Added

 CC||[email protected]

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-09-11 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Chip Halvorsen  changed:

   What|Removed |Added

 CC||Chip.Halvorsen@WestlakeLibr
   ||ary.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-08-12 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Eileen Chandler  changed:

   What|Removed |Added

 CC||[email protected]

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-08-12 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Michelle Spinney  changed:

   What|Removed |Added

 CC||[email protected]

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-08-12 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Nancy M.  changed:

   What|Removed |Added

 CC||[email protected]

--- Comment #4 from Nancy M.  ---
Our network offers self-registration and I merge many cards. I'm truly amazed
this is not already an option when merging. Patrons who are registered more
than once often have updated information that is not in the older record. This
would be an important enhancement as more libraries are offering online
registration.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2025-08-12 Thread bugzilla-daemon--- via Koha-bugs
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Brendan Lawlor  changed:

   What|Removed |Added

 CC||[email protected]

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2024-01-25 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Katie Bliss  changed:

   What|Removed |Added

 CC||[email protected]

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2024-01-17 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Rebecca Coert  changed:

   What|Removed |Added

 CC||[email protected]

--- Comment #3 from Rebecca Coert  ---
This would be very useful, especially if the Registration Date field was
included.  I often merge newer accounts (with the correct information) for
users that have returned, but have an old/expired account.  It would be nice to
keep their original registration date.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2022-05-26 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

[email protected] changed:

   What|Removed |Added

 CC||[email protected]

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2022-05-24 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Elaine Bradtke  changed:

   What|Removed |Added

 CC||[email protected]

--- Comment #2 from Elaine Bradtke  ---
Important for libraries that allow self registration.  Users  create their own
logins without linking to their existing card.  If we try to merge the two, the
login information (password, etc.) is lost.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2022-03-17 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Lisette Scheer  changed:

   What|Removed |Added

 CC||[email protected]

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
[email protected]
https://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 30303] Add ability to select which values to retain when merging patrons

2022-03-16 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30303

Christopher Brannon  changed:

   What|Removed |Added

 CC||[email protected]

--- Comment #1 from Christopher Brannon  ---
This would be great!!! +1

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
[email protected]
https://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/