X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fgraph%2Fsignupdate.cgi;h=823ddb89f27b4e2aefea752538ffd71529b45bb9;hb=88371c24e0b727646f0b01288f01439a06967fe7;hp=43deddc8dc600593ebd9a12e0b1a03af4fc4fca2;hpb=2f16e6d6e40950637f714d2fdebfd44db1cf8db7;p=freeside.git diff --git a/httemplate/graph/signupdate.cgi b/httemplate/graph/signupdate.cgi index 43deddc8d..823ddb89f 100644 --- a/httemplate/graph/signupdate.cgi +++ b/httemplate/graph/signupdate.cgi @@ -34,21 +34,20 @@ $where{'agentnum'} = $agentnum if $agentnum; $where{'usernum'} = $usernum if $usernum; my $sdate = DateTime->new( - year => $cgi->param('start_year'), - month => $cgi->param('start_month'), - time_zone => 'America/Los_Angeles', + year => scalar($cgi->param('start_year')), + month => scalar($cgi->param('start_month')), )->epoch(); my $edate = DateTime->new( - year => $cgi->param('end_year'), - month => $cgi->param('end_month'), - time_zone => 'America/Los_Angeles', -)->epoch(); + year => scalar($cgi->param('end_year')), + month => scalar($cgi->param('end_month')), +)->add( months => 1 )->epoch(); -my $where .= " AND signupdate >= $sdate ". - " AND signupdate <= $edate "; +my $where = (%where ? ' AND ' : ' WHERE '); +$where .= " signupdate >= $sdate ". + " AND signupdate < $edate "; -foreach my $cust (qsearch({ table => 'cust_main', +foreach my $cust (qsearch({ table => 'cust_main', hashref => \%where, extra_sql => $where } )) { next if !$cust->signupdate;