diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-07-25 00:19:24 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-07-25 00:19:24 -0700 |
commit | bcfe675c785d864472a1feaa2a3071295af4f357 (patch) | |
tree | 94ca59a049a476260295211e6af5843299b9b8f3 /httemplate/browse | |
parent | 11e1b0aa5f1811e75ab3fd5c51d43304301567b3 (diff) |
compliance solutions integration: import and use produce/service code catalog, RT#75262
Diffstat (limited to 'httemplate/browse')
-rw-r--r-- | httemplate/browse/part_pkg_taxproduct/compliance_solutions.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/httemplate/browse/part_pkg_taxproduct/compliance_solutions.html b/httemplate/browse/part_pkg_taxproduct/compliance_solutions.html index 78c1b0a1d..bbcb6877f 100644 --- a/httemplate/browse/part_pkg_taxproduct/compliance_solutions.html +++ b/httemplate/browse/part_pkg_taxproduct/compliance_solutions.html @@ -8,10 +8,12 @@ $().ready(function() { + $('#taxproduct_submit').on('click', function() { + var service_code = $('#service_code').val().split(' '); select_taxproduct( - $('#service_code').val(), - $('#service_code').val() + ' ' + $('#service_code :selected').text() + service_code[0], + service_code[1] + ' ' + $('#service_code :selected').text() ); }); }); |