X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Faccess_right.pm;h=397b456ceb4c2a11f5832f3ef0aacfde8488e354;hb=431c9ca4fab151862bd24322bf8a1f9252fb38fc;hp=52cae3484297a69d435084525b32a4d890231f30;hpb=17b4664d50ba04809cb8b68fa0f3b6146b0c8ff3;p=freeside.git diff --git a/FS/FS/access_right.pm b/FS/FS/access_right.pm index 52cae3484..397b456ce 100644 --- a/FS/FS/access_right.pm +++ b/FS/FS/access_right.pm @@ -2,6 +2,7 @@ package FS::access_right; use strict; use vars qw( @ISA ); +use Tie::IxHash; use FS::Record qw( qsearch qsearchs ); use FS::upgrade_journal; @@ -151,6 +152,8 @@ sub _upgrade_data { # class method 'Process payment' => [ 'Process credit card payment', 'Process Echeck payment' ], 'Post refund' => [ 'Post check refund', 'Post cash refund' ], 'Refund payment' => [ 'Refund credit card payment', 'Refund Echeck payment' ], + 'Regular void' => [ 'Void payments' ], + 'Unvoid' => [ 'Unvoid payments', 'Unvoid invoices' ], ); foreach my $oldright (keys %migrate) { @@ -173,9 +176,10 @@ sub _upgrade_data { # class method die $error if $error; } - #after the WEST stuff is sorted, etc. - #my $error = $old->delete; - #die $error if $error; + unless ( $oldright =~ / (payment|refund)$/ ) { #after the WEST stuff is sorted + my $error = $old->delete; + die $error if $error; + } } @@ -183,13 +187,17 @@ sub _upgrade_data { # class method my @all_groups = qsearch('access_group', {}); - my %onetime = ( + tie my %onetime, 'Tie::IxHash', 'List customers' => 'List all customers', + 'List all customers' => 'Advanced customer search', 'List packages' => 'Summarize packages', 'Post payment' => 'Backdate payment', 'Cancel customer package immediately' => 'Un-cancel customer package', 'Suspend customer package' => 'Suspend customer', 'Unsuspend customer package' => 'Unsuspend customer', + 'New prospect' => 'Generate quotation', + 'Delete invoices' => 'Void invoices', + 'List invoices' => 'List quotations', 'List services' => [ 'Services: Accounts', 'Services: Domains', @@ -206,11 +214,16 @@ sub _upgrade_data { # class method 'Services: Mailing lists', 'Services: External services', ], + + 'Services: Accounts' => 'Services: Accounts: Advanced search', + 'Services: Wireless broadband services' => 'Services: Wireless broadband services: Advanced search', + 'Services: Hardware' => 'Services: Hardware: Advanced search', + 'List rating data' => [ 'Usage: RADIUS sessions', 'Usage: Call Detail Records (CDRs)', 'Usage: Unrateable CDRs', ], - ); + ; foreach my $old_acl ( keys %onetime ) { @@ -253,7 +266,7 @@ sub _upgrade_data { # class method 'rightname' => 'Download report data', } ); my $error = $access_right->insert; - die $error if $error; + warn $error if $error; } FS::upgrade_journal->set_done('ACL_download_report_data');