[koha-commits] main Koha release repository branch master updated. v16.11.00-147-gd8cdceb

Git repo owner gitmaster at git.koha-community.org
Fri Dec 30 12:58:47 CET 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  d8cdceb2613bad6e43826233f0c635c0e34d718b (commit)
       via  f532d27302596b1736b67f81c6520160c4e3d8f0 (commit)
       via  5c0dfe852396f6391ad1b9873eebed7fb8134437 (commit)
      from  af171f9b21da8fa1c22754caa541e826ffeee529 (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 d8cdceb2613bad6e43826233f0c635c0e34d718b
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Wed Dec 28 15:10:26 2016 +0000

    Bug 13726 - (QA followup) Fix vendor retrieval in invoices.pl
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit f532d27302596b1736b67f81c6520160c4e3d8f0
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Nov 29 09:16:55 2016 +0000

    Bug 13726: Fix for serials/acqui-search-result.pl
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

commit 5c0dfe852396f6391ad1b9873eebed7fb8134437
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Feb 17 14:37:10 2015 +0100

    Bug 13726: Make Koha::Acq::Bookseller using Koha::Object
    
    This patch create a Koha::Acquisition::Booksellers module and
    Koha::Acquisition::Bookseller::Contract[s] modules.
    
    All code in the acquisition module is adapted to use the CRUD methods of
    Koha::Object[s].
    The former C4 routines are removed.
    
    Test plan:
    Since a lot of files are impacted by this patch, try a complete
    acquisition workflow and try to catch errors.
    Be focused on bookseller and bookseller' contacts data.
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>

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

Summary of changes:
 C4/Acquisition.pm                                  |   20 +-
 C4/Bookseller.pm                                   |  138 -------------
 C4/Bookseller/Contact.pm                           |  209 --------------------
 Koha/Acquisition/Bookseller.pm                     |  113 ++---------
 Koha/Acquisition/Bookseller/Contact.pm             |   13 ++
 Koha/Acquisition/Bookseller/Contacts.pm            |   19 ++
 Koha/Acquisition/Booksellers.pm                    |   37 ++++
 Koha/Object.pm                                     |    1 -
 acqui/addorderiso2709.pl                           |   12 +-
 acqui/basket.pl                                    |   17 +-
 acqui/basketgroup.pl                               |   16 +-
 acqui/basketheader.pl                              |    8 +-
 acqui/booksellers.pl                               |   22 +--
 acqui/finishreceive.pl                             |    5 +-
 acqui/invoice.pl                                   |    6 +-
 acqui/invoices.pl                                  |   11 +-
 acqui/modordernotes.pl                             |    8 +-
 acqui/neworderbiblio.pl                            |   12 +-
 acqui/neworderempty.pl                             |   18 +-
 acqui/newordersubscription.pl                      |    6 +-
 acqui/newordersuggestion.pl                        |    6 +-
 acqui/orderreceive.pl                              |    8 +-
 acqui/parcel.pl                                    |   10 +-
 acqui/parcels.pl                                   |    6 +-
 acqui/pdfformat/layout2pages.pm                    |   12 +-
 acqui/pdfformat/layout2pagesde.pm                  |   12 +-
 acqui/pdfformat/layout3pages.pm                    |   12 +-
 acqui/pdfformat/layout3pagesfr.pm                  |   12 +-
 acqui/supplier.pl                                  |   38 ++--
 acqui/transferorder.pl                             |   19 +-
 acqui/uncertainprice.pl                            |   37 ++--
 acqui/updatesupplier.pl                            |   29 ++-
 acqui/z3950_search.pl                              |    6 +-
 admin/aqcontract.pl                                |   12 +-
 admin/currency.pl                                  |    4 +-
 catalogue/moredetail.pl                            |    6 +-
 serials/acqui-search-result.pl                     |   13 +-
 serials/subscription-detail.pl                     |   10 +-
 t/Prices.t                                         |   50 ++---
 t/db_dependent/Acquisition.t                       |   16 +-
 t/db_dependent/Acquisition/CancelReceipt.t         |    8 +-
 .../Acquisition/GetBasketsInfosByBookseller.t      |    6 +-
 .../Acquisition/GetOrdersByBiblionumber.t          |    7 +-
 t/db_dependent/Acquisition/Invoices.t              |   10 +-
 t/db_dependent/Acquisition/NewOrder.t              |   10 +-
 t/db_dependent/Acquisition/OrderFromSubscription.t |   11 +-
 t/db_dependent/Acquisition/OrderUsers.t            |   10 +-
 t/db_dependent/Acquisition/StandingOrders.t        |    1 -
 t/db_dependent/Acquisition/TransferOrder.t         |   14 +-
 t/db_dependent/Acquisition/close_reopen_basket.t   |    8 +-
 t/db_dependent/AdditionalField.t                   |   10 -
 t/db_dependent/Bookseller.t                        |  193 +++++++++---------
 t/db_dependent/Budgets.t                           |    7 +-
 t/db_dependent/Contract.t                          |    8 +-
 t/db_dependent/Letters.t                           |   26 ++-
 t/db_dependent/Serials.t                           |    4 +-
 t/db_dependent/Serials/Claims.t                    |    8 +-
 57 files changed, 485 insertions(+), 865 deletions(-)
 delete mode 100644 C4/Bookseller/Contact.pm
 create mode 100644 Koha/Acquisition/Bookseller/Contact.pm
 create mode 100644 Koha/Acquisition/Bookseller/Contacts.pm
 create mode 100644 Koha/Acquisition/Booksellers.pm


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list