summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2015-03-10 12:58:55 -0700
committerMark Wells <mark@freeside.biz>2015-03-10 12:58:55 -0700
commit93b55cfdc07c1c29e9b42e801713f6595eaf071f (patch)
tree3d92c3c6b93135906661b335bbd8f6f26633f9a3 /FS
parent4d81504d903cc11cc3637ecc3e6f4af44c59addd (diff)
set default itemdesc="Tax" on quotation taxes, #32489
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/quotation.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/quotation.pm b/FS/FS/quotation.pm
index cf75267a1..fef69ed63 100644
--- a/FS/FS/quotation.pm
+++ b/FS/FS/quotation.pm
@@ -698,7 +698,7 @@ sub estimate {
my $quotation_pkg_tax = FS::quotation_pkg_tax->new({
quotationpkgnum => $pkg->quotationpkgnum,
- itemdesc => $tax_def->taxname,
+ itemdesc => ($tax_def->taxname || 'Tax'),
taxnum => $taxnum,
taxtype => ref($tax_def),
});