X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FUpgrade.pm;h=8b7d7337f884278dcb787709b3799c7134ac1beb;hb=d26b7edb666abcaed41193ec40dbb00781848b13;hp=3694f8a5195d3008561794c4090aa158ac2d162c;hpb=4d81504d903cc11cc3637ecc3e6f4af44c59addd;p=freeside.git diff --git a/FS/FS/Upgrade.pm b/FS/FS/Upgrade.pm index 3694f8a51..8b7d7337f 100644 --- a/FS/FS/Upgrade.pm +++ b/FS/FS/Upgrade.pm @@ -138,6 +138,37 @@ 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', ''); + } + + if ( $conf->exists('voip-cust_email_csv_cdr') ) { + $conf->set('voip_cdr_email_attach', 'csv'); + $conf->delete('voip-cust_email_csv_cdr') ; + } + + if ( !$conf->config('password-generated-characters') ) { + my $pw_set = + 'abcdefghijkmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ23456789()#.,' ; + $conf->set('password-generated-characters', $pw_set); + } + + if ($conf->exists('unsuspendauto') && !$conf->config('unsuspend_balance')) { + $conf->set('unsuspend_balance','Zero'); + $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 { @@ -298,6 +329,9 @@ sub upgrade_data { tie my %hash, 'Tie::IxHash', + #fix whitespace - before cust_main + 'cust_location' => [], + #cust_main (remove paycvv from history) 'cust_main' => [], @@ -409,6 +443,10 @@ sub upgrade_data { #set default locations on quoted packages 'quotation_pkg' => [], + + #mark certain taxes as system-maintained, + # and fix whitespace + 'cust_main_county' => [], ; \%hash; @@ -471,7 +509,9 @@ sub upgrade_schema_data { 'cust_bill_pkg_detail' => [], #add necessary columns to RT schema 'TicketSystem' => [], - + #remove possible dangling records + 'password_history' => [], + 'cust_pay_pending' => [], ; \%hash;