diff options
author | Mark Wells <mark@freeside.biz> | 2016-09-06 12:42:34 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-09-06 13:30:45 -0700 |
commit | f4bb9273f1ba174858e221fd37f6dd1dca4119e9 (patch) | |
tree | ce30490a7ca66a69983bf448e57c100f863d6721 /httemplate/browse/part_pkg_taxproduct | |
parent | c33b039c24de7192a72b172b317937f749c2cea3 (diff) |
UI improvements for selecting taxproducts, #71555 and #71556
Diffstat (limited to 'httemplate/browse/part_pkg_taxproduct')
-rwxr-xr-x | httemplate/browse/part_pkg_taxproduct/suretax.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/httemplate/browse/part_pkg_taxproduct/suretax.html b/httemplate/browse/part_pkg_taxproduct/suretax.html index 9c00c5c69..8f237f360 100755 --- a/httemplate/browse/part_pkg_taxproduct/suretax.html +++ b/httemplate/browse/part_pkg_taxproduct/suretax.html @@ -138,8 +138,7 @@ my $id = $cgi->param('id'); my $select_onclick = sub { my $row = shift; my $taxnum = $row->taxproductnum; - my $code = $row->taxproduct; - my $desc = $row->description; + my $desc = $row->taxproduct . ' ' . $row->description; "select_taxproduct('$taxnum', '$desc')"; }; |