X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_bill_void.pm;h=f3dba9081958bf9a47bee15aec6f91f4dba43bdc;hb=292ef074d01bb925e9a466ed771bf2ac418bb44f;hp=bf147c09ca498394e094a6dfac88a8cda497ad44;hpb=523a0d904238cd573e4ae6a4a12dfcfea37cd703;p=freeside.git diff --git a/FS/FS/cust_bill_void.pm b/FS/FS/cust_bill_void.pm index bf147c09c..f3dba9081 100644 --- a/FS/FS/cust_bill_void.pm +++ b/FS/FS/cust_bill_void.pm @@ -108,7 +108,17 @@ points to. You can ask the object for a copy with the I method. sub table { 'cust_bill_void'; } sub notice_name { 'VOIDED Invoice'; } -#XXXsub template_conf { 'quotation_'; } +sub template_conf { 'invoice_'; } + +sub has_sections { + my $self = shift; + my $agentnum = $self->cust_main->agentnum; + my $tc = $self->template_conf; + + $self->conf->exists($tc.'sections', $agentnum) || + $self->conf->exists($tc.'sections_by_location', $agentnum); +} + =item insert @@ -278,7 +288,7 @@ sub cust_pkg { Class method which returns an SQL WHERE fragment to search for parameters specified in HASHREF. Accepts the following parameters for L: C<_date>, C, C, -C, C, C, C, C. Also +C, C, C, C. Also accepts the following: =over 4 @@ -302,7 +312,7 @@ sub search_sql_where { map { $_ => $param->{$_} } grep { exists($param->{$_}) } qw( _date invnum_min invnum_max agentnum custnum cust_classnum - refnum payby ) + refnum ) }; my $search_sql = FS::cust_bill->search_sql_where($cust_bill_param); $search_sql =~ s/cust_bill/cust_bill_void/g;