[koha-commits] main Koha release repository branch 18.11.x updated. v18.11.04-65-g746b393

Git repo owner gitmaster at git.koha-community.org
Mon Apr 15 14:41:31 CEST 2019


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, 18.11.x has been updated
       via  746b3930d5556d14d4fcc6a64612561edf8fef96 (commit)
       via  ad2a3c5e8034d82edda187aa113029eb4f07b4bb (commit)
       via  07b8478a19e078408c37d9259f5b6110afaffa08 (commit)
       via  f394977ae621fce1923852779feda9aa7f69cdf7 (commit)
       via  a3fe896ebf719caa465660374e35ec78003ab210 (commit)
      from  0853986d05d0f13b2033727b975dc7b620aef3e5 (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 746b3930d5556d14d4fcc6a64612561edf8fef96
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Wed Feb 27 12:45:47 2019 -0500

    Bug 20937: Truncate items for print notices when user has an email
    
    To test:
     1 - Set PrintNoticesMaxLines to 1
     2 - Checkout 2 (or more) items to a patron and make them overdue to trigger a
    notice
     3 - Make sure the patron has an email
     4 - Make sure the notice you are sending is set to 'print' as the type
     5 - Run overdue_notices.pl without the 'nomail' option
     6 - Find the message and note all items have been added
     7 - Apply patch
     8 - Clear the message queue
     9 - Re-run overdue_notices.pl
    10 - Confirm the message now has only 1 item.
    11 - Set PrintNoticesMaxLines to 0
    12 - Clear the message queue
    13 - Re-run overdue_notices.pl
    14 - Confirm the message has 2 items as expected
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 083f789b9548ec70d86dc48911df1bc9febda619)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit ad2a3c5e8034d82edda187aa113029eb4f07b4bb
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Sun Apr 7 16:25:28 2019 +0000

    Bug 22075: Fix encoding problem with RIS export in OPAC
    
    When exporting a record with diacritics in RIS
    format from the detail page in OPAC the encoding
    is not correct and the diacritics appear broken.
    
    This patch fixes it.
    
    To test:
    - Find or create a record with some special
      chars in your OPAC
    - Go to the detail page
    - Save as > RIS
    - Verify the diacritics are broken in an editor
    - Apply patch
    - Repeat and verify everything now displays correctly
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit bfeac6486516f185d9882d294d5000ab773c7dd5)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 07b8478a19e078408c37d9259f5b6110afaffa08
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Mon Mar 25 12:55:03 2019 +0000

    Bug 22541: Invoice adjustments should show invoice number and include link on ordered.pl and spent.pl
    
    To test:
     1 - Find a vendor in acquisitions
     2 - Click 'receive shipment'
     3 - Create an invoice
     4 - Click 'Finish receiving'
     5 - Add an adjustment that encumbers while open and update adjustments
     6 - Go to acqui-home and click on the ordered total for the fund with the adjustment
     7 - Note the invoice adjustment shows the invoice id and does not link
     8 - Add another invoice and another adjustment, but close the invoice this time
     9 - Go to acqui-home and click on the spent total for the fund with the adjustment
    10 - Note the invoice adjustment shows the invoice id and does not link
    11 - Apply patch
    12 - Visit the spent and ordered pages and note the adjustments show invoicenumber and are links
    13 - prove -v t/db_dependent/Koha/Acquisition/Invoice/Adjustments.t
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 3c2ce5df6f550fd2452b978e1b5f7ac54e66b092)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit f394977ae621fce1923852779feda9aa7f69cdf7
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Wed Mar 27 16:19:29 2019 +0100

    Bug 22595: Items search is mixing inputs
    
    Items search is using inputs and selects from search form to create an Ajax call.
    
    In this call selects are parsed before inputs.
    But a custom search field can be used with authorised values and used after a regular search field.
    In this case the "q" param is not ordered like the "name" param.
    
    Test plan :
    1) Go to Administration > Item search fields
    2) Define a search field with an authorised values category
    3) Go to items search
    4) Use a regular filter like call number
    5) Click on new field
    6) Use custom field with an authorised value
    7) Perform search
    => Without patch you get wrong resuts, authorised value is used as value for first field
    => You can see this by listening traffic in Firebug, look at params "f" and "q"
    8) Check some combinaison of select and input filters
    
    Signed-off-by: Michal Denar <black23 at gmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 3e9989568e171ebcfc73df80c49556e0b663a8ae)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit a3fe896ebf719caa465660374e35ec78003ab210
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Tue Mar 12 11:11:45 2019 +0000

    Bug 19747: Add link to article requests help page
    
    Newer manuals contain information about article requests.
    This patch adds the link to the article request section
    in the manual.
    
    To test:
    - Activate ArticleRequests system preference
    - Go to Circulation > Article requests
    - Click on Help
    - Verify that you end up in the proper section of the manual
    
    Signed-off-by: Michal Denar <black23 at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    (cherry picked from commit 64740260e51b4249dbc99d151dadfb173cde5298)
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 C4/Acquisition.pm                                    |    1 -
 Koha/Acquisition/Invoice/Adjustment.pm               |   15 +++++++++++++++
 Koha/Manual.pm                                       |    1 +
 acqui/ordered.pl                                     |    2 +-
 acqui/spent.pl                                       |    2 +-
 .../intranet-tmpl/prog/en/modules/acqui/ordered.tt   |    6 +++++-
 .../intranet-tmpl/prog/en/modules/acqui/spent.tt     |   12 ++++++++++--
 .../prog/en/modules/catalogue/itemsearch.tt          |   18 ++++++++----------
 misc/cronjobs/overdue_notices.pl                     |    2 ++
 opac/opac-export.pl                                  |    7 +++++++
 .../Koha/Acquisition/Invoice/Adjustments.t           |   10 +++++++++-
 11 files changed, 59 insertions(+), 17 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list