diff options
author | jeff <jeff> | 2008-04-16 11:54:35 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-04-16 11:54:35 +0000 |
commit | 81026510972881108c9bd9c72d146d3d47d72f2e (patch) | |
tree | 2cd7e4a1db6e8f33b0080118398445ef6c8d9dc8 /httemplate | |
parent | 93ef7394a93db7b5543d60e93a074db52fa5ddfa (diff) |
this no longer belongs
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/part_pkg_taxproduct.html | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/httemplate/edit/part_pkg_taxproduct.html b/httemplate/edit/part_pkg_taxproduct.html deleted file mode 100644 index 033c37f56..000000000 --- a/httemplate/edit/part_pkg_taxproduct.html +++ /dev/null @@ -1,42 +0,0 @@ -<% include('/elements/header-popup.html', 'Select tax product') %> -<SCRIPT> - function saveit() { - var num = parent.document.getElementById('taxproductnum'); - var disp = parent.document.getElementById('taxproduct_description'); - var sel = document.getElementById('taxproduct_popup_select'); - num.value = sel.options[sel.selectedIndex].value; - disp.value = sel.options[sel.selectedIndex].text; - parent.cClick(); - } -</SCRIPT> -<FORM="dummy" METHOD="POST" onsubmit="saveit();return false;" > - -<% ntable("#cccccc", 2) %> -<TR> - <TD align="left">Tax product</TD> - <TD> - <% include( '/elements/select-table.html', - 'empty_label' => '(select product)', - 'table' => 'part_pkg_taxproduct', - 'name_col' => 'description', - 'curr_value' => $curr_value, - 'element_etc' => "id='taxproduct_popup_select'", - ) - %> - </TD> -</TR> -</TABLE> -<BR><BR> -<CENTER><INPUT type="submit" value="Select"></CENTER> -</FORM> -<% include('/elements/footer.html') %> - -<%init> - -my $conf = new FS::Conf; - -my ( $query ) = $cgi->keywords; -$query =~ /^(\d+)$/; -my $curr_value = $1; - -</%init> |