[open-ils-commits] r20265 - in branches/rel_2_0/Open-ILS/xul/staff_client: chrome/content/cat server/cat (dbs)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Apr 20 16:32:18 EDT 2011


Author: dbs
Date: 2011-04-20 16:32:12 -0400 (Wed, 20 Apr 2011)
New Revision: 20265

Modified:
   branches/rel_2_0/Open-ILS/xul/staff_client/chrome/content/cat/opac.js
   branches/rel_2_0/Open-ILS/xul/staff_client/server/cat/util.js
Log:
Revert r20035 - restore default copy status for Fast Add to "Available"

As noted in https://bugs.launchpad.net/evergreen/+bug/756838, the default
status for "Fast Add" copies has been "Available" since release 1.6.1.0.
Changing the default in the middle of the 2.0 release series would likely
cause more confusion for those sites who appreciate the current Fast Add
behaviour, so this reverts the changes in r20035 and maintains the same
defaults as 1.6.1.0.

Note that in r20264, 2.1.0 will gain two new org unit settings that will
enable sites to control their preferred default copy status for the Fast Add
and Add Volume interfaces.


Modified: branches/rel_2_0/Open-ILS/xul/staff_client/chrome/content/cat/opac.js
===================================================================
--- branches/rel_2_0/Open-ILS/xul/staff_client/chrome/content/cat/opac.js	2011-04-20 20:18:48 UTC (rev 20264)
+++ branches/rel_2_0/Open-ILS/xul/staff_client/chrome/content/cat/opac.js	2011-04-20 20:32:12 UTC (rev 20265)
@@ -195,7 +195,7 @@
                             copy_obj.fine_level(2); // Normal
                             copy_obj.loan_duration(2); // Normal
                             copy_obj.location(1); // Stacks
-                            copy_obj.status(5); // In Process
+                            copy_obj.status(0); // Available
                             copy_obj.circulate(get_db_true());
                             copy_obj.holdable(get_db_true());
                             copy_obj.opac_visible(get_db_true());

Modified: branches/rel_2_0/Open-ILS/xul/staff_client/server/cat/util.js
===================================================================
--- branches/rel_2_0/Open-ILS/xul/staff_client/server/cat/util.js	2011-04-20 20:18:48 UTC (rev 20264)
+++ branches/rel_2_0/Open-ILS/xul/staff_client/server/cat/util.js	2011-04-20 20:32:12 UTC (rev 20265)
@@ -545,7 +545,7 @@
         copy_obj.fine_level(2); // Normal
         copy_obj.loan_duration(2); // Normal
         copy_obj.location(1); // Stacks
-        copy_obj.status(5); // In Process
+        copy_obj.status(0); // Available
         copy_obj.circulate(get_db_true());
         copy_obj.holdable(get_db_true());
         copy_obj.opac_visible(get_db_true());



More information about the open-ils-commits mailing list