RT# 82137 - default payment amount now has processing fee in total if processing...
[freeside.git] / httemplate / elements / tr-selectmultiple-part_pkg.html
1 <& tr-td-label.html, label => emt('Packages'), %opt &>
2   <TD <% $style %>>
3     <% include( '/elements/select-table.html',
4                   'table'         => 'part_pkg',
5                   'name_col'      => 'pkg',
6                   'disable_empty' => 1,
7                   'element_etc'   => 'multiple',
8                   'extra_sql'     => 'WHERE ' . FS::part_pkg->curuser_pkgs_sql,
9                   %opt,
10               )
11   %>
12   </TD>
13 </TR>
14
15 <%init>
16
17 my %opt = @_;
18 my $style = $opt{'cell_style'};
19 $style = 'STYLE="'.$style.'"' if $style;
20
21 </%init>