From: dbs Date: Mon, 6 Jul 2009 03:09:48 +0000 (+0000) Subject: Order copy locations by name by default; useful for shelving location filter in advan... X-Git-Tag: sprint4-merge-nov22~9737 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=cf7ccfea730e2f48b9269fe49f2cb09f431bf6ce;p=working%2FEvergreen.git Order copy locations by name by default; useful for shelving location filter in advanced search git-svn-id: svn://svn.open-ils.org/ILS/trunk@13509 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/asset.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/asset.pm index a9d601bc21..9439aec16b 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/asset.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/asset.pm @@ -449,6 +449,7 @@ sub ranged_asset_copy_location { FROM $ctable c JOIN $descendants d ON (d.id = c.owning_lib) + ORDER BY name SQL my $sth = asset::copy_location->db_Main->prepare($sql);