diff options
| author | Mark Wells <mark@freeside.biz> | 2013-02-01 08:53:33 -0800 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2013-02-01 08:53:33 -0800 |
| commit | 3bbd8a5c852ba095f1914e0a3b70bdafb6a8b36d (patch) | |
| tree | 4116c43f791a80a759f7753dbb367ebc6b064b7e /FS | |
| parent | f38a68a13de191bc9fe41975c9ea8c84cafb6209 (diff) | |
show declined batch payments in customer display, #21117
Diffstat (limited to 'FS')
| -rw-r--r-- | FS/FS/cust_pay_batch.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/FS/FS/cust_pay_batch.pm b/FS/FS/cust_pay_batch.pm index 9c5c2d811..1db74ef71 100644 --- a/FS/FS/cust_pay_batch.pm +++ b/FS/FS/cust_pay_batch.pm @@ -206,6 +206,17 @@ sub cust_main { qsearchs( 'cust_main', { 'custnum' => $self->custnum } ); } +=item pay_batch + +Returns the payment batch this payment belongs to (L<FS::pay_batch). + +=cut + +sub pay_batch { + my $self = shift; + FS::pay_batch->by_key($self->batchnum); +} + #you know what, screw this in the new world of events. we should be able to #get the event defs to retry (remove once.pm condition, add every.pm) without #mucking about with statuses of previous cust_event records. right? |
