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/select-table.html | |
parent | 29644d5921c99520965b884b25800ed084891e94 (diff) |
first pass at sales reports per agent and package class
Diffstat (limited to 'httemplate/elements/select-table.html')
-rw-r--r-- | httemplate/elements/select-table.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/httemplate/elements/select-table.html b/httemplate/elements/select-table.html index 10cc8b995..96f0177fb 100644 --- a/httemplate/elements/select-table.html +++ b/httemplate/elements/select-table.html @@ -11,9 +11,12 @@ # 'empty_label' => '', #better specify it though, the default might change # 'hashref' => {}, # 'records' => \@records, #instead of hashref + # 'pre_options' => [ 'value' => 'option' ], #before normal options my( %opt ) = @_; + #warn "***** select-table: \n". Dumper(%opt); + my $key = dbdef->table($opt{'table'})->primary_key; #? $opt{'primary_key'} || my $name_col = $opt{'name_col'}; @@ -25,11 +28,17 @@ @records = qsearch( $opt{'table'}, ( $opt{'hashref'} || {} ) ); } + my @pre_options = $opt{'pre_options'} ? @{ $opt{'pre_options'} } : (); + %> <SELECT NAME="<%= $key %>"> - <OPTION VALUE=""><%= $opt{'empty_label'} || 'all' %></OPTION> + <% while ( @pre_options ) { %> + <OPTION VALUE="<%= shift(@pre_options) %>"><%= shift(@pre_options) %> + <% } %> + + <OPTION VALUE=""><%= $opt{'empty_label'} || 'all' %> <% foreach my $record ( sort { $a->$name_col() cmp $b->$name_col() } @records |