[koha-commits] main Koha release repository branch master updated. v16.05.00-1033-gbb1e9c5

Git repo owner gitmaster at git.koha-community.org
Thu Oct 13 17:23:56 CEST 2016


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  bb1e9c500c810402c64436c53bcc00ffb9a0b857 (commit)
      from  174769e382dfd5205595a5b9ae7b58c8ebf5d850 (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 bb1e9c500c810402c64436c53bcc00ffb9a0b857
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Aug 10 13:04:48 2016 +0100

    Bug 17248 - Koha::AuthorisedValues - Remove GetKohaAuthorisedValueLib
    
    The subroutine C4::Koha::GetKohaAuthorisedValueLib just retrieves a description
    (lib) for a given authorised value.
    
    We can easily replace it using:
      Koha::AuthorisedValues->search({ category => $cat, authorised_value => $av })->lib
    or
      Koha::AuthorisedValues->search({ category => $cat, authorised_value => $av })->opac_description
    
    Test plan:
    - On the detail page of a bibliographic record, the description for notforloan,
    restricted and stack (?) should be correctly displayed
    - View a shelf, the location (LOC) description should be displayed
    - On the search result page, the location description should be displayed in the
      facets
    - Set AcqCreateItem=ordering and receiving items.
    The description for notforloan, restricted, location, ccode, etc. field
    should be displayed.
    - When creating item in the acquisition module, the dropdown list for
      field linked to AV should display the AV' descriptions
    - On the transfers page, the description of the location should be
      displayed.
    - On the checkout list from the circulation.pl and returns.pl pages, the
      description for "materials" should be displayed
    - Fill some OPAC_SUG AV and create a suggestion, the reason dropdown
      list should display the description of OPAC_SUG
    
    Signed-off-by: Claire Gravely <claire_gravely at hotmail.com>
    
    Signed-off-by: Katrin Fischer  <katrin.fischer at bsz-bw.de>
    
    Signed-off-by: Brendan Gallagher <brendan at bywatersolutions.com>

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

Summary of changes:
 C4/Circulation.pm              |    1 -
 C4/Items.pm                    |   23 ++++++++++++++++-------
 C4/Koha.pm                     |   22 ----------------------
 C4/Search.pm                   |    8 +++++---
 acqui/orderreceive.pl          |   15 ++++++++++-----
 catalogue/getitem-ajax.pl      |   17 ++++++++++++-----
 circ/branchtransfers.pl        |    8 ++++++--
 circ/circulation.pl            |    4 +++-
 circ/returns.pl                |    4 +++-
 opac/opac-suggestions.pl       |    5 ++++-
 serials/subscription-detail.pl |    6 ++++--
 11 files changed, 63 insertions(+), 50 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list