[freeside-commits] freeside/httemplate/search report_cust_main.html, NONE, 1.1.2.1

Jeff Finucane,420,, jeff at wavetail.420.am
Fri Nov 2 17:55:26 PDT 2007


Update of /home/cvs/cvsroot/freeside/httemplate/search
In directory wavetail:/tmp/cvs-serv11731/httemplate/search

Added Files:
      Tag: FREESIDE_1_7_BRANCH
	report_cust_main.html 
Log Message:
new customer report/flattened package report (ticket 1428)

--- NEW FILE: report_cust_main.html ---
<% include('/elements/header.html', 'Customer Report' ) %>

<FORM ACTION="cust_main_ADV.cgi" METHOD="GET">
<INPUT TYPE="hidden" NAME="magic" VALUE="bill">

  <TABLE BGCOLOR="#cccccc" CELLSPACING=0>

    <TR>
      <TH BGCOLOR="#e8e8e8" COLSPAN=2 ALIGN="left"><FONT SIZE="+1">Search options</FONT></TH>
    </TR>
    <% include( '/elements/tr-select-agent.html',
                   ($cgi->param('agentnum') || ''),
               )
    %>

%   foreach my $field (qw( signupdate )) {

      <TR>
        <TD ALIGN="right" VALIGN="center"><% $label{$field} %></TD>
        <TD>
          <TABLE>
            <% include( '/elements/tr-input-beginning_ending.html',
                          prefix   => $field,
                          layout   => 'horiz',
                      )
            %>
          </TABLE>
        </TD>
      </TR>

%   }
    
    <TR>
      <TD ALIGN="right" VALIGN="center">Include cancelled packages</TD>
        <TD><INPUT TYPE="checkbox" NAME="cancelled_pkgs"></TD>
    </TR>

  </TABLE>

<BR>
<INPUT TYPE="submit" VALUE="Get Report">

</FORM>

<% include('/elements/footer.html') %>
<%init>

die "access denied"
  unless ( $FS::CurrentUser::CurrentUser->access_right('List customers') &&
           $FS::CurrentUser::CurrentUser->access_right('List packages')
         );;

</%init>
<%once>

my %label = (
  'signupdate'     => 'Signup Date',
);

</%once>



More information about the freeside-commits mailing list