diff options
author | Mark Wells <mark@freeside.biz> | 2015-05-26 11:31:27 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-05-26 11:31:48 -0700 |
commit | af62b675c3f1b8f5996561de7e6b28020479a7d6 (patch) | |
tree | ae975bc49fa45416a4e681e07de2a7ae0e7949b9 /httemplate | |
parent | 1da8bc3a1229d6e8fae3fde5ad70b297176c285b (diff) |
throw an exception if Avalara is misconfigured, and clean up exception handling for tax engines in general, #25718, #31639
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/elements/freeside.css | 5 | ||||
-rwxr-xr-x | httemplate/view/quotation.html | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/httemplate/elements/freeside.css b/httemplate/elements/freeside.css index 4fd06a0bf..ebeee985d 100644 --- a/httemplate/elements/freeside.css +++ b/httemplate/elements/freeside.css @@ -287,4 +287,7 @@ td.label { color: #ff0000; } - +.error { + font-size: large; + color: #ff0000; +} diff --git a/httemplate/view/quotation.html b/httemplate/view/quotation.html index 4abef9f78..67609a1c6 100755 --- a/httemplate/view/quotation.html +++ b/httemplate/view/quotation.html @@ -73,7 +73,7 @@ function areyousure(href, message) { % } % if ( $error ) { -<& /elements/error.html, $error &> +<DIV CLASS="error"><% emt('Error calculating quotation: [_1]', $error) %></DIV> % } % if ( $conf->exists('quotation_html') ) { |