summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-02-12 10:37:15 -0800
committerIvan Kohler <ivan@freeside.biz>2016-02-12 10:37:15 -0800
commit3bfdeb08960dd59c5ad3d202aa8d8c4df10a8a3d (patch)
treeb141f9c4e5f2f7833a3e53a4f20dd89a6f04e134
parent3d17fc79205ac61e8ca5e56bad32ac8a7ebc657e (diff)
can't upgrade 3.x events in 5.x
-rw-r--r--FS/FS/Upgrade.pm6
-rw-r--r--FS/FS/part_event.pm18
-rw-r--r--FS/FS/part_event/Action/cust_bill_realtime_card.pm29
-rw-r--r--FS/FS/part_event/Action/cust_bill_realtime_check.pm28
4 files changed, 1 insertions, 80 deletions
diff --git a/FS/FS/Upgrade.pm b/FS/FS/Upgrade.pm
index c554678..59167a7 100644
--- a/FS/FS/Upgrade.pm
+++ b/FS/FS/Upgrade.pm
@@ -330,12 +330,6 @@ sub upgrade_data {
tie my %hash, 'Tie::IxHash',
- #payby conditions to new ones
- 'part_event_condition' => [],
-
- #payby actions to new ones
- 'part_event' => [],
-
#cust_main (remove paycvv from history, locations, cust_payby, etc)
'cust_main' => [],
diff --git a/FS/FS/part_event.pm b/FS/FS/part_event.pm
index 9a1144c..6751776 100644
--- a/FS/FS/part_event.pm
+++ b/FS/FS/part_event.pm
@@ -1,7 +1,7 @@
package FS::part_event;
+use base qw( FS::m2name_Common FS::option_Common );
use strict;
-use base qw( FS::m2name_Common FS::option_Common );
use vars qw( $DEBUG );
use Carp qw(confess);
use FS::Record qw( dbh qsearch qsearchs );
@@ -606,22 +606,6 @@ sub process_initialize {
$part_event->initialize;
}
-sub _upgrade_data { #class method
- my ($class, %opts) = @_;
-
- foreach my $part_event (
- qsearch('part_event', { 'action' => 'cust_bill_realtime_card' }),
- qsearch('part_event', { 'action' => 'cust_bill_realtime_check' }),
- ) {
-
- $part_event->action('realtime_auto');
- my $error = $part_event->replace;
- die $error if $error;
-
- }
-
-}
-
=back
=head1 SEE ALSO
diff --git a/FS/FS/part_event/Action/cust_bill_realtime_card.pm b/FS/FS/part_event/Action/cust_bill_realtime_card.pm
deleted file mode 100644
index 1a2d046..0000000
--- a/FS/FS/part_event/Action/cust_bill_realtime_card.pm
+++ /dev/null
@@ -1,29 +0,0 @@
-package FS::part_event::Action::cust_bill_realtime_card;
-
-use strict;
-use base qw( FS::part_event::Action );
-
-sub description {
- #'Run card with a <a href="http://420.am/business-onlinepayment/">Business::OnlinePayment</a> realtime gateway';
- 'Run card with a Business::OnlinePayment realtime gateway';
-}
-
-sub deprecated { 1; }
-
-sub eventtable_hashref {
- { 'cust_bill' => 1 };
-}
-
-sub default_weight { 30; }
-
-sub do_action {
- my( $self, $cust_bill ) = @_;
-
- #my $cust_main = $self->cust_main($cust_bill);
- my $cust_main = $cust_bill->cust_main;
-
- my %opt = ('cc_surcharge_from_event' => 1);
- $cust_bill->realtime_card(%opt);
-}
-
-1;
diff --git a/FS/FS/part_event/Action/cust_bill_realtime_check.pm b/FS/FS/part_event/Action/cust_bill_realtime_check.pm
deleted file mode 100644
index 11b13a9..0000000
--- a/FS/FS/part_event/Action/cust_bill_realtime_check.pm
+++ /dev/null
@@ -1,28 +0,0 @@
-package FS::part_event::Action::cust_bill_realtime_check;
-
-use strict;
-use base qw( FS::part_event::Action );
-
-sub description {
- #'Run check with a <a href="http://420.am/business-onlinepayment/">Business::OnlinePayment</a> realtime gateway';
- 'Run check with a Business::OnlinePayment realtime gateway';
-}
-
-sub deprecated { 1; }
-
-sub eventtable_hashref {
- { 'cust_bill' => 1 };
-}
-
-sub default_weight { 30; }
-
-sub do_action {
- my( $self, $cust_bill ) = @_;
-
- #my $cust_main = $self->cust_main($cust_bill);
- my $cust_main = $cust_bill->cust_main;
-
- $cust_bill->realtime_ach;
-}
-
-1;