diff options
| author | ivan <ivan> | 2008-04-13 02:56:28 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2008-04-13 02:56:28 +0000 | 
| commit | 4ec6dfa446447d68663b01fbfda07c0bd2fcb3ae (patch) | |
| tree | c947d6af3fd85e87754b70e0029dc485ea9b19ba /httemplate | |
| parent | 311c04a5c63df131c6c5d74568c9e426f73955eb (diff) | |
add elements for selecting taxproduct
Diffstat (limited to 'httemplate')
| -rw-r--r-- | httemplate/elements/select-taxproduct.html | 23 | ||||
| -rw-r--r-- | httemplate/elements/tr-select-taxproduct.html | 22 | 
2 files changed, 45 insertions, 0 deletions
| diff --git a/httemplate/elements/select-taxproduct.html b/httemplate/elements/select-taxproduct.html new file mode 100644 index 000000000..f2ae9ebcb --- /dev/null +++ b/httemplate/elements/select-taxproduct.html @@ -0,0 +1,23 @@ +<% ntable("#cccccc", 2) %> +  <TR> +    <TD align="right">Tax product</TD> +    <TD> +      <INPUT name="part_pkg_taxproduct_taxproductnum" id="taxproductnum" type="hidden" value="<% $opt{'taxproductnum'}%>"> +      <INPUT name="part_pkg_taxproduct_description" id="taxproductnum_description" type="text" value="<% $opt{taxproduct_description} %>" size="12" onclick="overlib( OLiframeContent('<% $p %>/browse/part_pkg_taxproduct.cgi?_type=select&id=taxproductnum&taxproductnum='+document.getElementById('taxproductnum').value, 1000, 400, 'tax_product_popup'), CAPTION, 'Select product', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK); return false;"> +    </TD> +  </TR> +  <TR> +    <TD colspan="2" align="right"> +      <INPUT name="tax_override" id="tax_override" type="hidden" value="<% $opt{tax_override} %>"> +      <A href="javascript:void(0)" onclick="overlib( OLiframeContent('part_pkg_taxoverride.html?selected='+document.getElementById('tax_override').value, 1100, 600, 'tax_product_popup'), CAPTION, 'Edit product tax overrides', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK); return false;"> +        <% $opt{tax_override} ? 'Edit tax overrides' : 'Override taxes' %> +      </A> +    </TD> +  </TR> +</TABLE> + +<%init> + +my %opt = @_; + +</%init> diff --git a/httemplate/elements/tr-select-taxproduct.html b/httemplate/elements/tr-select-taxproduct.html new file mode 100644 index 000000000..f9f192a28 --- /dev/null +++ b/httemplate/elements/tr-select-taxproduct.html @@ -0,0 +1,22 @@ +% if ( $conf->exists('enable_taxproducts') ) {  + +    <TR> +      <TD COLSPAN="2"> +        <% include('select-taxproduct.html', @_) %> +      </TD> +    </TR> + +% } else {  + +    <INPUT TYPE="hidden" NAME="taxproductnum" VALUE="<% $opt{taxproductnum} %>"> +    <INPUT TYPE="hidden" NAME="tax_override"  VALUE="<% $opt{tax_override}  %>"> + +% }  + +<%init> + +my $conf = new FS::Conf;  + +my %opt = @_; + +</%init> | 
