X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FUpgrade.pm;h=ffc04bab77a69de42171386153636f68348c8bac;hb=0ed195595b5c7ea404c8848d9d1881ada4214489;hp=d4ba7b8289bbc19e788b0ddcae2bd19e7bc7a5ed;hpb=a3c90ed7984e1c0ef73cb969183597545113221d;p=freeside.git diff --git a/FS/FS/Upgrade.pm b/FS/FS/Upgrade.pm index d4ba7b828..ffc04bab7 100644 --- a/FS/FS/Upgrade.pm +++ b/FS/FS/Upgrade.pm @@ -133,11 +133,11 @@ If you need to continue using the old Form 477 report, turn on the $conf->set($newname, 'location'); } - # boolean enable_taxproducts is now enable_taxproducts = 'cch' - if ( $conf->exists('enable_taxproducts') and - $conf->config('enable_taxproducts') eq '' ) { + # boolean enable_taxproducts is now tax_data_vendor = 'cch' + if ( $conf->exists('enable_taxproducts') ) { - $conf->set('enable_taxproducts', 'cch'); + $conf->delete('enable_taxproducts'); + $conf->set('tax_data_vendor', 'cch'); } @@ -147,6 +147,13 @@ If you need to continue using the old Form 477 report, turn on the $conf->delete('tax-cust_exempt-groups-require_individual_nums'); } + # boolean+text previous_balance-exclude_from_total is now two separate options + my $total_new_charges = $conf->config('previous_balance-exclude_from_total'); + if (length($total_new_charges) > 0) { + $conf->set('previous_balance-text-total_new_charges', $total_new_charges); + $conf->set('previous_balance-exclude_from_total', ''); + } + enable_banned_pay_pad() unless length($conf->config('banned_pay-pad')); }