[koha-commits] main Koha release repository branch new/bug_8004 created. v3.08.00-262-g81edc91

Git repo owner gitmaster at git.koha-community.org
Mon Jun 11 16:02:26 CEST 2012


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, new/bug_8004 has been created
        at  81edc91f37b58a5f3c02443073c5bc4d4411bf82 (commit)

- Log -----------------------------------------------------------------
commit 81edc91f37b58a5f3c02443073c5bc4d4411bf82
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue Apr 24 11:43:40 2012 -0400

    Bug 8004 - Items on Hold Lose Transfer After Being Scanned Twice
    
    When a hold is placed on an item where the pickup location is
    different than the holding library, Koha initiates a branch
    transfer for that item to fill that hold when items is run through
    the returns system.
    
    If the item is then run through returns a second time, the system is
    supposed to close that transfer as a 'wrongtransfer', and open a new
    transfer with the same from and to branches as the original.
    
    The problem is that the original transfer is closed, but the new
    transfer is not created. This is because at some point, someone
    replaced the template variable WrongTransfer, which had previously
    contained the branchcode for the library to transfer to, with the
    full name of the library instead ( I assume to make a look nicer ).
    
    Solved by removing the line that was changing the variable contents
    from the branchcode to the branch name, and adding a new TT filter,
    KohaBranchName that functions in the same way as KohaDates, except
    it takes a branchcode and returns the branch name for the given
    branchcode.
    
    The consequence of this, is the the name of the library is passed to updateWrongTransfer instead of the branchcode, causing the failure.
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>

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


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list