diff options
author | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
commit | c82d349f864e6bd9f96fd1156903bc1f7193a203 (patch) | |
tree | e117a87533656110b6acd56fc0ca64289892a9f5 /httemplate/misc/cust-part_pkg.cgi | |
parent | 74e058c8a010ef6feb539248a550d0bb169c1e94 (diff) |
This commit was manufactured by cvs2svn to create tag 'TORRUS_1_0_9'.TORRUS_1_0_9
Diffstat (limited to 'httemplate/misc/cust-part_pkg.cgi')
-rw-r--r-- | httemplate/misc/cust-part_pkg.cgi | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/httemplate/misc/cust-part_pkg.cgi b/httemplate/misc/cust-part_pkg.cgi deleted file mode 100644 index 524799ced..000000000 --- a/httemplate/misc/cust-part_pkg.cgi +++ /dev/null @@ -1,30 +0,0 @@ -<% objToJson( \@return ) %> -<%init> - -my( $custnum, $classnum ) = $cgi->param('arg'); - -#XXX i guess i should be agent-virtualized. cause "packages a customer can -#order" is such a huge deal -my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } ); - -my %hash = ( 'disabled' => '' ); -if ( $classnum > 0 ) { - $hash{'classnum'} = $classnum; -} elsif ( $classnum eq '' || $classnum == 0 ) { - $hash{'classnum'} = ''; -} #else -1, all classes, so don't set classnum - -my @part_pkg = qsearch({ - 'table' => 'part_pkg', - 'hashref' => \%hash, - '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, $_->can_discount ); } - #sort { $a->pkg_comment cmp $b->pkg_comment } - @part_pkg; - -</%init> |