summaryrefslogtreecommitdiff
path: root/httemplate/search/cust_credit_source_bill_pkg.html
blob: 1d5f8d2a027d4579347a75b5754f2f61c9ff7ce8 (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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<& elements/search.html,
              'title'         => 'Credit package source detail', #from line item
              'name_singular' => 'credit source',
              'query'         => $query,
              'count_query'   => $count_query,
               'count_addl'   => [ $money_char. '%.2f total', ],
               'header'       => [
                   #'#',

                   'Amount',

                   #credit
                   'Date',
                   'By',
                   'Reason',

                   # line item
                   'Line item',

                   #invoice
                   'Invoice',
                   'Date',
                   FS::UI::Web::cust_header(),
               ],
               'fields'       => [
                   #'creditsourcebillpkgnum',
                   sub { sprintf($money_char.'%.2f', shift->amount ) },

                   sub { time2str('%b %d %Y', shift->get('cust_credit_date') ) },
                   sub { shift->cust_credit->otaker },
                   sub { shift->cust_credit->reason }, # split into reason_only/addlinfo if addlinfo ever gets used here

                   sub { $_[0]->pkgnum > 0
                           ? $_[0]->get('pkg')      # possibly use override.pkg
                           : $_[0]->get('itemdesc') # but i think this correct
                       },
                   'invnum',
                   sub { time2str('%b %d %Y', shift->_date ) },
                   \&FS::UI::Web::cust_fields,
               ],
               'sort_fields'  => [
                   'amount',
                   'cust_credit_date',
                   '', #'otaker',
                   '', #reason
                   '', #line item description
                   'invnum',
                   '_date',
                   FS::UI::Web::cust_sort_fields(),
               ],
               'links' => [
                   '',
                   '',
                   '',
                   '',
                   '',
                   $ilink,
                   $ilink,
                   ( map { $_ ne 'Cust. Status' ? $clink : '' }
                         FS::UI::Web::cust_header()
                   ),
               ],
               'align' => 'rrlll'.
                          'rr'.
                          FS::UI::Web::cust_aligns(),
               'color' => [ 
                              '',
                              '',
                              '',
                              '',
                              '',
                              '',
                              '',
                              FS::UI::Web::cust_colors(),
                            ],
               'style' => [ 
                              '',
                              '',
                              '',
                              '',
                              '',
                              '',
                              '',
                              FS::UI::Web::cust_styles(),
                          ],
           
&>
<%init>

#copied from cust_credit_source_bill.html, which itself was cribbed from
# cust_bill_pkg.cgi and cust_credit.html, but then i took out a bunch of the
# tax reports stuff... maybe look for parts of all three that can be made into
# common subs?

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 );

if ( $cgi->param('usernum') =~ /^(\d+)$/ ) {
  push @where, "cust_credit.usernum = $1";
}

#source invoice date (not yet in UI)
my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
push @where, "cust_bill._date >= $beginning",
             "cust_bill._date <= $ending";

#credit date
my($cr_begin, $cr_end) = FS::UI::Web::parse_beginning_ending($cgi, 'credit');
push @where, "cust_credit._date >= $cr_begin",
             "cust_credit._date <= $cr_end";

#credit amount?  seems more what is expected than the applied amount (not in UI)
my @lt_gt = FS::UI::Web::parse_lt_gt($cgi, 'amount' );
s/amount/cust_credit.amount/g foreach (@lt_gt);
push @where, @lt_gt;

if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
  push @where, "cust_main.agentnum = $1";
}

#(not in UI)
if ( $cgi->param('billpkgnum') =~ /^(\d+)$/ ) {
  push @where, "billpkgnum = $1";
}

#(not in UI)
#classnum
# not specified: all classes
# 0: empty class
# N: classnum
my $use_override = $cgi->param('use_override');
if ( $cgi->param('classnum') =~ /^(\d+)$/ ) {
  my $comparison = '';
  if ( $1 == 0 ) {
    $comparison = "IS NULL";
  } else {
    $comparison = "= $1";
  }

  if ( $use_override ) {
    push @where, "(
      part_pkg.classnum $comparison AND pkgpart_override IS NULL OR
      override.classnum $comparison AND pkgpart_override IS NOT NULL
    )";
  } else {
    push @where, "part_pkg.classnum $comparison";
  }
}

my $count_query = "SELECT COUNT(DISTINCT creditsourcebillpkgnum),
                          SUM(cust_credit_source_bill_pkg.amount)";

my $join_cust =
  '      JOIN cust_bill ON ( cust_bill_pkg.invnum = cust_bill.invnum )'.
  FS::UI::Web::join_cust_main('cust_bill', 'cust_pkg');


my $join_cust_bill_pkg = 'LEFT JOIN cust_bill_pkg USING ( billpkgnum )';

my $join_pkg =  ' LEFT JOIN cust_pkg USING ( pkgnum )
                  LEFT JOIN part_pkg USING ( pkgpart ) ';

my $where = ' WHERE '. join(' AND ', @where);

my $join_credit = ' LEFT JOIN cust_credit      USING ( crednum ) ';

$count_query .= " FROM cust_credit_source_bill_pkg
                         $join_cust_bill_pkg
                         $join_pkg
                         $join_credit
                         $join_cust
                       $where";

my @select = ( 'cust_credit_source_bill_pkg.*',
               'cust_bill_pkg.*',
               'cust_credit.otaker',
               'cust_credit._date AS cust_credit_date',
               'cust_bill._date',
             );
push @select, 'part_pkg.pkg' unless $cgi->param('istax');
push @select, 'cust_main.custnum',
              FS::UI::Web::cust_sql_fields();

my $query = {
  'table'     => 'cust_credit_source_bill_pkg',
  'addl_from' => "$join_cust_bill_pkg
                  $join_pkg
                  $join_credit
                  $join_cust",
  'hashref'   => {},
  'select'    => join(', ', @select ),
  'extra_sql' => $where,
  'order_by'  => 'ORDER BY creditsourcebillpkgnum', #cust_bill. or cust_credit._date?
};

my $ilink = [ "${p}view/cust_bill.cgi?", 'invnum' ];
my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ];

my $conf = new FS::Conf;
my $money_char = $conf->config('money_char') || '$'; #well, no guarantee we're totaling these up in the multi-currency world

</%init>