X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fcust_pay.pm;h=23bcdd93af0226929e2e96a5bd28133c3da0a6dd;hp=0ead2265860513b0b26883a3722b226d7a17a333;hb=fca1ac5d298b3896c1c42c4ffc7bdd3bab9b8516;hpb=f89dfe02a0471e3b7ddd45d444dd1258e17f9434 diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm index 0ead22658..23bcdd93a 100644 --- a/FS/FS/cust_pay.pm +++ b/FS/FS/cust_pay.pm @@ -69,7 +69,9 @@ L and L for conversion functions. =item paymask - Masked payinfo (See L for how this works) -=item paybatch - text field for tracking card processing +=item paybatch - text field for tracking card processing or other batch grouping + +=item payunique - Optional unique identifer to prevent duplicate transactions. =item closed - books closed flag, empty or `Y' @@ -162,17 +164,6 @@ sub insert { } } - if ( $self->paybatch =~ /^webui-/ ) { - my @cust_pay = qsearch('cust_pay', { - 'custnum' => $self->custnum, - 'paybatch' => $self->paybatch, - } ); - if ( scalar(@cust_pay) > 1 ) { - $dbh->rollback if $oldAutoCommit; - return "a payment with webui token ". $self->paybatch. " already exists"; - } - } - $dbh->commit or die $dbh->errstr if $oldAutoCommit; #false laziness w/ cust_credit::insert @@ -421,7 +412,10 @@ sub check { # should give a better error message the other 99.9% of the time... if ( length($self->payunique) && qsearchs('cust_pay', { 'payunique' => $self->payunique } ) ) { - return "duplicate transaction"; #well, it *could* be a better error message + #well, it *could* be a better error message + return "duplicate transaction". + " - a payment with unique identifer ". $self->payunique. + " already exists"; } $self->SUPER::check;