From c1d8e2288d9b44823bd9216c5e96ba9d052a04bd Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 19 Dec 2009 19:09:30 +0000 Subject: fix order of packages after class selection changes --- httemplate/misc/cust-part_pkg.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'httemplate') diff --git a/httemplate/misc/cust-part_pkg.cgi b/httemplate/misc/cust-part_pkg.cgi index a249f033f..974ac0e87 100644 --- a/httemplate/misc/cust-part_pkg.cgi +++ b/httemplate/misc/cust-part_pkg.cgi @@ -20,10 +20,11 @@ my @part_pkg = qsearch({ 'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql( 'null'=>1 ). ' AND '. FS::part_pkg->agent_pkgs_sql( $cust_main->agent ), + 'order_by' => 'ORDER BY pkg', }); my @return = map { $_->pkgpart => $_->pkg_comment } - sort { $a->pkg_comment cmp $b->pkg_comment } + #sort { $a->pkg_comment cmp $b->pkg_comment } @part_pkg; -- cgit v1.2.1