[koha-commits] main Koha release repository branch master updated. v19.11.00-1252-gfcaed6ef24

Git repo owner gitmaster at git.koha-community.org
Fri Mar 20 17:31:06 CET 2020


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, master has been updated
       via  fcaed6ef24084da54d9d91c09072ff04d0070ef2 (commit)
       via  f04e77c7e5411ca7dcf761e7e1177d7362a10654 (commit)
       via  9364ceba0c78aadf289887f93faf3d4260a47cd8 (commit)
       via  46da9fceccc35086bf2b7c53edba787ed418f33e (commit)
       via  3ebe29bf2a79b51b72d274c55160c7a373d727ef (commit)
       via  3b6326a6ed8133b5596ffc6a7c20b2a639aaea80 (commit)
       via  5013a1bf850d548f2f6492b8ee703308b772d308 (commit)
       via  12cae89523ce6237b2ade600bcd86345e5df803b (commit)
      from  77c66abf7a3712573920a1aa17a602a4bb4e8712 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit fcaed6ef24084da54d9d91c09072ff04d0070ef2
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Jan 17 11:25:28 2020 +0000

    Bug 24297: Record 'Manual' trigger transfers
    
    To test:
    1 - Apply patches, restart_all
    2 - Gi to Circulation->Transfer
    3 - Transfer an item
    4 - Check the branch transfers table
    5 - The reason is set to 'Manual'
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit f04e77c7e5411ca7dcf761e7e1177d7362a10654
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Mar 20 16:02:15 2020 +0000

    Bug 24436: DBRev 19.12.00.049
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 9364ceba0c78aadf289887f93faf3d4260a47cd8
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Jan 17 10:47:49 2020 +0000

    Bug 24436: Add handling for reserve transfer triggers
    
    To test:
    1 - Place a hold for pickup at a different branch than you are signed in at on an item owned by current branch
    2 - Check in the item
    3 - Confirm the transfer
    4 - Check the branchtransfers table and note the reason is 'Reserve'
    5 - Set the preference CanMarkHoldsToPullAsLost to allow
    6 - Place a hold on an item at branch you are singed in at
    7 - Ensure you are not using strict sql modes (bug 22431)
    8 - Go to Circulation->Holds to pull
    9 - Mark hold as lost
    10 - Check branchtransfers and confirm reason is "LostReserve"
    11 - Check in item from step 1 at the correct branch
    12 - Go to Circulation->Holds awaiting pickup
    13 - Cancel the reserve
    14 - Check branchtransfers and confirm reason is "CancelReserve"
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 46da9fceccc35086bf2b7c53edba787ed418f33e
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Jan 17 11:20:37 2020 +0000

    Bug 24436: Add 'Reserve' options to branchtransfers trigger
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 3ebe29bf2a79b51b72d274c55160c7a373d727ef
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Mar 20 15:57:45 2020 +0000

    Bug 24299: DBRev 19.12.00.048
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 3b6326a6ed8133b5596ffc6a7c20b2a639aaea80
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Fri Mar 20 11:15:54 2020 +0000

    Bug 24299: Add Unit test for 'reason' in transferbook
    
    Test plan
    1/ Run test and verify it passes
    2/ Signoff
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 5013a1bf850d548f2f6492b8ee703308b772d308
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Jan 16 16:40:10 2020 +0000

    Bug 24299: Record 'RotatingCollection' as a transfer trigger
    
    This patch adds support for passing a trigger to
    C4::Circulation::transferbook and passes 'RotatingCollection' to it when
    called inside the rotating collections routine.
    
    Test plan:
    1/ Perform a rotating collection transfer operations
    2/ Check the database for instances of 'RotatingCollection' in the
    branchtransfers.reason field.
    3/ Signoff
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 12cae89523ce6237b2ade600bcd86345e5df803b
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Thu Jan 16 16:43:09 2020 +0000

    Bug 24299: Add 'RotatingCollection' branchtransfer trigger
    
    This patch adds the RotatingCollection value to the database enum for
    branchtransfer.reason
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

-----------------------------------------------------------------------

Summary of changes:
 C4/Circulation.pm                         |  8 +++--
 C4/Reserves.pm                            |  3 +-
 C4/RotatingCollections.pm                 |  3 +-
 Koha.pm                                   |  2 +-
 Koha/Schema/Result/Branchtransfer.pm      | 10 ++++--
 circ/branchtransfers.pl                   |  2 +-
 circ/pendingreserves.pl                   |  2 +-
 circ/waitingreserves.pl                   |  2 +-
 installer/data/mysql/kohastructure.sql    |  2 +-
 installer/data/mysql/updatedatabase.pl    | 53 +++++++++++++++++++++++++++++++
 t/db_dependent/Circulation/transferbook.t | 44 +++++++++++++++++++++++--
 11 files changed, 115 insertions(+), 16 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list