summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-taxproduct.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/tr-select-taxproduct.html')
-rw-r--r--httemplate/elements/tr-select-taxproduct.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/httemplate/elements/tr-select-taxproduct.html b/httemplate/elements/tr-select-taxproduct.html
deleted file mode 100644
index 759d0c01c..000000000
--- a/httemplate/elements/tr-select-taxproduct.html
+++ /dev/null
@@ -1,18 +0,0 @@
-% if ( $conf->exists('enable_taxproducts') ) {
- <%include('tr-td-label.html', @_) %>
- <TD <% $cell_style %>><% include('select-taxproduct.html', @_) %></TD>
- </TR>
-
-% } else {
- <INPUT TYPE="hidden" NAME="<% $name %>" VALUE="<% $opt{value} %>">
-% }
-
-<%init>
-
-my $conf = new FS::Conf;
-
-my %opt = @_;
-my $cell_style = $opt{cell_style} ? 'STYLE="'. $opt{cell_style}. '"' : '';
-my $name = $opt{element_name} || $opt{field} || 'taxproductnum';
-
-</%init>