summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-pkg_class.html
diff options
context:
space:
mode:
authorivan <ivan>2006-05-07 20:27:21 +0000
committerivan <ivan>2006-05-07 20:27:21 +0000
commite65c6a26ca778166aec2b2d1dd3012ab84fa611a (patch)
tree1ef2a5a21088301217a8b4f1440fedd6b7b1a274 /httemplate/elements/select-pkg_class.html
parent29644d5921c99520965b884b25800ed084891e94 (diff)
first pass at sales reports per agent and package class
Diffstat (limited to 'httemplate/elements/select-pkg_class.html')
-rw-r--r--httemplate/elements/select-pkg_class.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/httemplate/elements/select-pkg_class.html b/httemplate/elements/select-pkg_class.html
index 5486e0877..032c7abda 100644
--- a/httemplate/elements/select-pkg_class.html
+++ b/httemplate/elements/select-pkg_class.html
@@ -1,16 +1,17 @@
<%
my( $classnum, %opt ) = @_;
- my %select_opt = ();
- $select_opt{'records'} = $opt{'pkg_class'}
+ $opt{'records'} = delete $opt{'pkg_class'}
if $opt{'pkg_class'};
+ #warn "***** select-pkg-class: \n". Dumper(%opt);
+
%><%= include( '/elements/select-table.html',
'table' => 'pkg_class',
'name_col' => 'classname',
'value' => $classnum,
'empty_label' => '(none)',
#'hashref' => { 'disabled' => '' },
- #%select_opt,
+ %opt,
)
%>