summaryrefslogtreecommitdiff
path: root/httemplate/search/report_cust_pkg-date.html
blob: ceb9a9c75833c3ac9b949f4b3c93a01ea3cfe912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<& /elements/header.html, mt($title) &>

<FORM ACTION="cust_pkg-date.html" METHOD="GET">
<INPUT TYPE="hidden" NAME="date" VALUE="<% $col %>">

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

  <& /elements/tr-select-agent.html,
                 'curr_value'    => scalar( $cgi->param('agentnum') ),
                 'disable_empty' => 0,
  &>

  <& /elements/tr-select-cust-fields.html &>
  
</TABLE>

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

</FORM>

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

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

# for the page title
my %cols = (
  'contract_end' => 'Contract end'
);

# or let the column be selected here?
my $col = $cgi->param('date');
die "invalid date column" unless $cols{$col};
my $title = 'Packages by ' . lc($cols{$col}) . ' date';

</%init>