From: Mark Wells Date: Tue, 10 Mar 2015 19:58:55 +0000 (-0700) Subject: set default itemdesc="Tax" on quotation taxes, #32489 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=93b55cfdc07c1c29e9b42e801713f6595eaf071f;p=freeside.git set default itemdesc="Tax" on quotation taxes, #32489 --- 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), });