From: Mark Wells Date: Tue, 10 Mar 2015 19:59:11 +0000 (-0700) Subject: set default itemdesc="Tax" on quotation taxes, #32489 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=c2e5e744cf218f9a388bc3073bfe5d9cc86b5ff3 set default itemdesc="Tax" on quotation taxes, #32489 --- diff --git a/FS/FS/quotation.pm b/FS/FS/quotation.pm index 55730aeba..60abd3803 100644 --- a/FS/FS/quotation.pm +++ b/FS/FS/quotation.pm @@ -674,7 +674,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), });