diff options
author | ivan <ivan> | 2006-05-07 20:27:21 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-05-07 20:27:21 +0000 |
commit | e65c6a26ca778166aec2b2d1dd3012ab84fa611a (patch) | |
tree | 1ef2a5a21088301217a8b4f1440fedd6b7b1a274 /httemplate/elements/tr-select-pkg_class.html | |
parent | 29644d5921c99520965b884b25800ed084891e94 (diff) |
first pass at sales reports per agent and package class
Diffstat (limited to 'httemplate/elements/tr-select-pkg_class.html')
-rw-r--r-- | httemplate/elements/tr-select-pkg_class.html | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/httemplate/elements/tr-select-pkg_class.html b/httemplate/elements/tr-select-pkg_class.html index de10885c8..fbab0db14 100644 --- a/httemplate/elements/tr-select-pkg_class.html +++ b/httemplate/elements/tr-select-pkg_class.html @@ -1,16 +1,12 @@ <% my( $classnum, %opt ) = @_; - my @pkg_class; - if ( $opt{'pkg_class'} ) { - @pkg_class = @{ $opt{'pkg_class'} }; - } else { - @pkg_class = qsearch( 'pkg_class', {} ); # { disabled=>'' } ); - } + $opt{'pkg_class'} ||= [ qsearch( 'pkg_class', {} ) ]; # { disabled=>'' } ) + #warn "***** tr-select-pkg-class: \n". Dumper(%opt); %> -<% if ( scalar(@pkg_class) == 0 ) { %> +<% if ( scalar(@{ $opt{'pkg_class'} }) == 0 ) { %> <INPUT TYPE="hidden" NAME="classnum" VALUE=""> @@ -19,10 +15,7 @@ <TR> <TD ALIGN="right"><%= $opt{'label'} || 'Package class' %></TD> <TD> - <%= include( '/elements/select-pkg_class.html', $classnum, - 'pkg_class' => \@pkg_class, - ) - %> + <%= include( '/elements/select-pkg_class.html', $classnum, %opt ) %> </TD> </TR> |