[open-ils-commits] r7529 -
trunk/Open-ILS/src/perlmods/OpenILS/Application
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Jul 6 12:24:08 EDT 2007
Author: erickson
Date: 2007-07-06 12:20:07 -0400 (Fri, 06 Jul 2007)
New Revision: 7529
Modified:
trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm
Log:
moved from arbitrary limit to -1 to indicate we want to flesh the children arrays as far as possible, thanks to new cstore capabilities
Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm 2007-07-06 15:56:37 UTC (rev 7528)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm 2007-07-06 16:20:07 UTC (rev 7529)
@@ -1042,7 +1042,7 @@
[
{"parent_ou" => undef },
{
- flesh => 1000,
+ flesh => -1,
flesh_fields => { aou => ['children'] },
order_by => { aou => 'name'}
}
@@ -2308,7 +2308,7 @@
[
{ parent => undef},
{
- flesh => 1000,
+ flesh => -1,
flesh_fields => { pgt => ["children"] },
order_by => { pgt => 'name'}
}
@@ -2802,7 +2802,7 @@
[
{"parent_ou" => undef },
{
- flesh => 1000,
+ flesh => -1,
flesh_fields => { aou => ['children'] },
order_by => { aou => 'name'},
select => { aou => ["id","shortname", "name"]},
More information about the open-ils-commits
mailing list