[Koha-bugs] [Bug 14098] Regression in Marc Modification Templates

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed May 27 18:33:18 CEST 2015


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

Kyle M Hall <kyle at bywatersolutions.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #39582|0                           |1
        is obsolete|                            |
  Attachment #39583|0                           |1
        is obsolete|                            |
  Attachment #39584|0                           |1
        is obsolete|                            |
  Attachment #39585|0                           |1
        is obsolete|                            |

--- Comment #13 from Kyle M Hall <kyle at bywatersolutions.com> ---
Created attachment 39610
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=39610&action=edit
[SIGNED-OFF] Bug 14098: FIX Copy a subfield should not update the original
field

There is an inconsistency in the copy action:

Given the following control sample:

  245    _aThe art of computer programming
         _cDonald E. Knuth.
  300    _aA_exists
         _bB_exists

If we apply action (a) Copy the whole field 245 to 300, we get:

  245    _aThe art of computer programming
         _cDonald E. Knuth.
  300    _aA_exists
         _bB_exists
  300    _aThe art of computer programming
         _cDonald E. Knuth.

If we apply action (b) Copy the subfield 245$a to 300$a, we get:

  245    _aThe art of computer programming
         _cDonald E. Knuth.
  300    _aThe art of computer programming
         _bB_exists

In (a) the field is copied but in (b) the subfield is erased.

We should be consistent and don't erase the destination field.

Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list