summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-12-28 13:57:43 -0600
committerJonathan Prykop <jonathan@freeside.biz>2016-12-28 13:57:43 -0600
commit2c6ae1f63d3e3f66e06b15d275db0c688a974480 (patch)
tree500232ea0d25523863ce03d01b1d628a9123df52
parentdf92ab34778ae931caeaf87daa9c763e75feeede (diff)
73085: Enable credit card/ach encryption on a live system [handling for custnum-less cust_pay_pending]
-rw-r--r--FS/FS/cust_main.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm
index 493b1c6..ee570da 100644
--- a/FS/FS/cust_main.pm
+++ b/FS/FS/cust_main.pm
@@ -5407,6 +5407,9 @@ sub queueable_upgrade {
# window for possible conflict is practically nonexistant,
# but just in case...
$record = $record->select_for_update;
+ if (!$record->custnum && $table eq 'cust_pay_pending') {
+ $record->set('custnum_pending',1);
+ }
my $error = $record->replace;
die $error if $error;
}