X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FUpgrade.pm;h=576cdf072cb43f3c9361343d3ad7d3468d1b96ef;hb=c649441b5fdab63a35cdfe3907b486630af658bb;hp=b0a2713e3198524b9eee274a5cdb5e8805463b3f;hpb=e86b3578afbb298529e773506217cfc10e0257c4;p=freeside.git diff --git a/FS/FS/Upgrade.pm b/FS/FS/Upgrade.pm index b0a2713e3..576cdf072 100644 --- a/FS/FS/Upgrade.pm +++ b/FS/FS/Upgrade.pm @@ -161,6 +161,14 @@ If you need to continue using the old Form 477 report, turn on the $conf->delete('unsuspendauto'); } + # if translate-auto-insert is enabled for a locale, ensure that invoice + # terms are in the msgcat (is there a better place for this?) + if (my $auto_locale = $conf->config('translate-auto-insert')) { + my $lh = FS::L10N->get_handle($auto_locale); + foreach (@FS::Conf::invoice_terms) { + $lh->maketext($_) if length($_); + } + } } sub upgrade_overlimit_groups { @@ -321,7 +329,11 @@ sub upgrade_data { tie my %hash, 'Tie::IxHash', - #cust_main (remove paycvv from history) + #fix whitespace - before cust_main + 'cust_location' => [], + + #cust_main (tokenizes cards, remove paycvv from history, locations, cust_payby, etc) + # (handles payinfo encryption/tokenization across all relevant tables) 'cust_main' => [], #msgcat @@ -337,6 +349,9 @@ sub upgrade_data { #customer credits 'cust_credit' => [], + # fix some tax allocation records + 'cust_bill_pkg_void' => [], + #duplicate history records 'h_cust_svc' => [], @@ -433,7 +448,8 @@ sub upgrade_data { #set default locations on quoted packages 'quotation_pkg' => [], - #mark certain taxes as system-maintained + #mark certain taxes as system-maintained, + # and fix whitespace 'cust_main_county' => [], ;