[koha-commits] updated branch master (5ea0d6bb9bb9ed2052644b4253faf60c37d9880f)

Koha Gitosis gitosis at git.koha.org
Sun Aug 23 10:03:00 CEST 2009


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 "Koha GitWeb".

The branch, master has been updated
       via  5ea0d6bb9bb9ed2052644b4253faf60c37d9880f (commit)
       via  d2943ebc6c360aa22cd35671dee7983c35ef8ec1 (commit)
       via  dafb3e20da9cb470bde058c924d655413e462739 (commit)
       via  4b71494f19f02a5037ab536b748c3f6f017cea99 (commit)
       via  8219d79f5a6d35937a819487f881157260cf768a (commit)
       via  40ad4d2129fd276ea8e166c7c48b0107ec98f7df (commit)
       via  6f5797a315e1b9a0fa84b53ce068bd081dd63af3 (commit)
       via  e40e11ab0c1b23f3c5581d2b2aac44c04f8232b4 (commit)
      from  b159ba8e5aba27572394658867624f3573a0574b (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 5ea0d6bb9bb9ed2052644b4253faf60c37d9880f
Author: Galen Charlton <gmcharlt at gmail.com>
Date:   Sun Aug 23 13:06:00 2009 -0400

    bug 3481: imporve cart_to_shelf.pl
    
    Use revised CartToShelf() to insure that indexer
    knows to reindex affected bib records.
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit d2943ebc6c360aa22cd35671dee7983c35ef8ec1
Author: Galen Charlton <gmcharlt at gmail.com>
Date:   Sun Aug 23 12:53:06 2009 -0400

    bug 3481 followup - ensure permanent location is stored when updating item
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit dafb3e20da9cb470bde058c924d655413e462739
Author: Galen Charlton <gmcharlt at gmail.com>
Date:   Sun Aug 23 12:51:12 2009 -0400

    bug 3481 followup - improve CartToShelf
    
    * added POD
    * removed optional $barcode argument - in all cases,
      itemnumber is known, and we should stick with
      itemnumber when retrieving an existing item
    * use ModItem to do the update so that indexer
      will know to reindex bib - otherwise, can't
      do an accurate search of items that are on
      the shelving cart.
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit 4b71494f19f02a5037ab536b748c3f6f017cea99
Author: Galen Charlton <gmcharlt at gmail.com>
Date:   Sun Aug 23 12:49:17 2009 -0400

    bug 3481 followup - set temporary processing location
    
    Ensure that the temporary processing location is always
    set regardless of whether one item is added or multiple
    copies are added at once.
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit 8219d79f5a6d35937a819487f881157260cf768a
Author: Galen Charlton <gmcharlt at gmail.com>
Date:   Sun Aug 23 12:48:34 2009 -0400

    cosmetic fix - use $itemnumber as argument to GetItems when available
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit 40ad4d2129fd276ea8e166c7c48b0107ec98f7df
Author: Galen Charlton <gmcharlt at gmail.com>
Date:   Sun Aug 23 12:47:52 2009 -0400

    bug 3481 followup - add new sysprefs to circulation section

commit 6f5797a315e1b9a0fa84b53ce068bd081dd63af3
Author: Galen Charlton <gmcharlt at gmail.com>
Date:   Sun Aug 23 12:46:28 2009 -0400

    bug 3481 followup - fix database update
    
    Set items.permanent_location to the current value
    of items.location - otherwise, the item shelving location
    could get blanked as existing items are checked in.
    
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

commit e40e11ab0c1b23f3c5581d2b2aac44c04f8232b4
Author: Colin Campbell <colin.campbell at ptfs-europe.com>
Date:   Mon Jul 27 16:33:00 2009 +0100

    bug 3481: Allow Item Temporary Locations for Processing and Shelving.
    
    Allows temporary locations corresponding to 'in processing' and 'shelving'
    so that newly-created items, and newly-returned items do not show
    immediately as a available. Three new system preferences govern the usage
    of these features.
    
    NewItemsDefaultLocation. If system pref NewItemsDefaultLocation is set to a location code,
     all newly catalogued items will be set to the location set in this preference.
     Location code must be a valid LOC authorized value type.
    
    InProcessingToShelvingCart. if the system pref InProcessingToShelvingCart is turned on,
    any items run through returns.pl with a location code for 'PROC', will be modified to
    have a new location code of 'CART'.
    
    ReturnToShelvingCart.  If the syspref ReturnToShelvingCart is turned on,
    all items returned other than confirmed holds will have a new location code of 'CART'.
    Any item issued is automatically taken of the shelving cart.
    
    Adds a cron script shelf_to_cart.pl which should be run hourly.
    Updates all items with a location of CART to the item's permanent location.
    
    The original location code is stored in the new items column 'permanent_location'.
    
    Original Author: PTFS Contractor <dbavousett at ptfs.com>
    
    This work co-sponsored by
      Middletown Township Public Library, Middletown, NJ USA  and
      East Brunswick Public Library, East Brunswick, NJ USA
    
    Signed-off-by: Colin Campbell <colin.campbell at ptfs-europe.com>
    Signed-off-by: Galen Charlton <gmcharlt at gmail.com>

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

Summary of changes:
 C4/Circulation.pm                                  |    3 +
 C4/Items.pm                                        |   34 +++++++++
 C4/Reserves.pm                                     |    8 ++
 admin/systempreferences.pl                         |    3 +
 cataloguing/additem.pl                             |   30 ++++++--
 circ/returns.pl                                    |   17 +++++
 installer/data/mysql/en/mandatory/sysprefs.sql     |    3 +
 .../1-Obligatoire/unimarc_standard_systemprefs.sql |    3 +
 installer/data/mysql/kohastructure.sql             |    1 +
 installer/data/mysql/updatedatabase.pl             |   11 +++
 kohaversion.pl                                     |    2 +-
 misc/cronjobs/cart_to_shelf.pl                     |   71 ++++++++++++++++++++
 12 files changed, 178 insertions(+), 8 deletions(-)
 create mode 100755 misc/cronjobs/cart_to_shelf.pl


hooks/post-receive
-- 
Koha GitWeb



More information about the koha-commits mailing list