From: Ivan Kohler Date: Wed, 11 Jan 2017 00:09:43 +0000 (-0800) Subject: fix errors about expired cards from automatic encryption enabling, RT#74905, RT#74085 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=561acfcfe03d8e7057f5995c86e6d33f94679d42 fix errors about expired cards from automatic encryption enabling, RT#74905, RT#74085 --- diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index ee570da7e..5ffc84a79 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -5410,6 +5410,12 @@ sub queueable_upgrade { if (!$record->custnum && $table eq 'cust_pay_pending') { $record->set('custnum_pending',1); } + + local($ignore_expired_card) = 1; + local($ignore_banned_card) = 1; + local($skip_fuzzyfiles) = 1; + local($import) = 1;#prevent automatic geocoding (need its own variable?) + my $error = $record->replace; die $error if $error; }