summaryrefslogtreecommitdiff
path: root/httemplate/browse
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2017-07-25 00:19:23 -0700
committerIvan Kohler <ivan@freeside.biz>2017-07-25 00:19:23 -0700
commitbc2454b300843ce6194d894ef2889e1053bb3580 (patch)
tree39830254708b735893ccecce7465dfab4f5b4ce9 /httemplate/browse
parente3c22ef5216a090529e99209409a9cc6ff11a1d3 (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.html6
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()
);
});
});