summaryrefslogtreecommitdiff
path: root/FS/FS/cust_refund.pm
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-11-18 05:14:22 -0600
committerJonathan Prykop <jonathan@freeside.biz>2016-11-29 05:06:53 -0600
commit6f2add8c2496952f0953ae066cfde3570610c98e (patch)
tree7d5c9e9d2935cbc5c76719ef6f57f62d7be92ebe /FS/FS/cust_refund.pm
parent868e9dd529dc43fd523a6883ee72ec9b22e11b90 (diff)
71513: Card tokenization [token_check]
Diffstat (limited to 'FS/FS/cust_refund.pm')
-rw-r--r--FS/FS/cust_refund.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/cust_refund.pm b/FS/FS/cust_refund.pm
index 4d2baa5..12ab0d6 100644
--- a/FS/FS/cust_refund.pm
+++ b/FS/FS/cust_refund.pm
@@ -289,7 +289,8 @@ otherwise returns false.
sub replace {
my $self = shift;
- return "Can't modify closed refund" if $self->closed =~ /^Y/i;
+ return "Can't modify closed refund"
+ if $self->closed =~ /^Y/i && !$FS::payinfo_Mixin::allow_closed_replace;
$self->SUPER::replace(@_);
}