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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
<% include( 'elements/search.html',
'title' => 'Package discounts',
'name' => 'discounts',
'query' => $query,
'count_query' => $count_query,
#'redirect' => $link,
'header' => [ 'Status',
'Discount',
'Months used',
'Employee',
'Package',
FS::UI::Web::cust_header(
# $cgi->param('cust_fields')
),
],
'fields' => [
sub { ucfirst( shift->status ) },
sub { shift->discount->description },
sub { my $m = shift->months_used;
$m =~ /\./ ? sprintf('%.2f',$m) : $m;
},
'otaker',
'pkg',
\&FS::UI::Web::cust_fields,
],
'links' => [
'',
'',
'',
'',
'',
( map { $_ ne 'Cust. Status' ? $clink : ''}
FS::UI::Web::cust_header()
),
],
'align' => 'clrll'. FS::UI::Web::cust_aligns(),
'color' => [
'',
'',
'',
'',
'',
FS::UI::Web::cust_colors(),
],
'style' => [
'',
'',
'',
'',
'',
FS::UI::Web::cust_styles(),
],
)
%>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
#my $conf = new FS::Conf;
#here is the agent virtualization
my $agentnums_sql =
$FS::CurrentUser::CurrentUser->agentnums_sql( 'table' => 'cust_main' );
my @where = ( $agentnums_sql );
#status
if ( $cgi->param('status') eq 'active' ) {
push @where, " ( cust_pkg_discount.disabled IS NULL
OR cust_pkg_discount.disabled != 'Y' )
AND ( months IS NULL OR months_used < months ) ";
#XXX also end date
} elsif ( $cgi->param('status') eq 'expired' ) {
push @where, " ( cust_pkg_discount.disabled IS NOT NULL
AND cust_pkg_discount.disabled = 'Y' )
OR ( months IS NOT NULL AND months_used >= months )
"; #XXX also end date
}
#otaker
if ( $cgi->param('otaker') && $cgi->param('otaker') =~ /^([\w\.\-]+)$/ ) {
push @where, "cust_pkg_discount.otaker = '$1'";
}
#agent
if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
push @where, "cust_main.agentnum = $1";
}
my $count_query = "SELECT COUNT(*), SUM(amount)";
my $join = ' LEFT JOIN discount USING ( discountnum )
LEFT JOIN cust_pkg USING ( pkgnum )
LEFT JOIN part_pkg USING ( pkgpart )
LEFT JOIN cust_main USING ( custnum ) ';
my $where = ' WHERE '. join(' AND ', @where);
$count_query .= " FROM cust_pkg_discount $join $where";
my @select = (
'cust_pkg_discount.*',
'part_pkg.pkg',
);
push @select, 'cust_main.custnum',
FS::UI::Web::cust_sql_fields();
my $query = {
'table' => 'cust_pkg_discount',
'addl_from' => $join,
'hashref' => {},
'select' => join(', ', @select ),
'extra_sql' => $where,
'order_by' => 'ORDER BY pkgdiscountnum',
};
my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];
my $conf = new FS::Conf;
</%init>
|