From: ivan Date: Tue, 4 Mar 2008 21:07:14 +0000 (+0000) Subject: fix otaker population for cust_refund like cust_credit and cust_pay X-Git-Tag: TRIXBOX_2_6~27 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=523a6ea6ecb07ed1b953c05ce36ef7b33293cf18 fix otaker population for cust_refund like cust_credit and cust_pay --- diff --git a/FS/FS/cust_refund.pm b/FS/FS/cust_refund.pm index 53c6bac25..498179553 100644 --- a/FS/FS/cust_refund.pm +++ b/FS/FS/cust_refund.pm @@ -235,10 +235,13 @@ returns the error, otherwise returns false. Called by the insert method. sub check { my $self = shift; + $self->otaker(getotaker) unless ($self->otaker); + my $error = $self->ut_numbern('refundnum') || $self->ut_numbern('custnum') || $self->ut_money('refund') + || $self->ut_alpha('otaker') || $self->ut_text('reason') || $self->ut_numbern('_date') || $self->ut_textn('paybatch') @@ -257,8 +260,6 @@ sub check { $error = $self->payinfo_check; return $error if $error; - $self->otaker(getotaker); - $self->SUPER::check; }