summaryrefslogtreecommitdiff
path: root/httemplate/search/cust_event.html
blob: d55b5c6d29a94d4c4776e6ca39e33952aaf6f579 (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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<% include( 'elements/search.html',
                 'title'       => $title,
                 'html_init'   => $html_init,
                 'menubar'     => $menubar,
                 'name'        => 'billing events',
                 'query'       => $sql_query,
                 'count_query' => $count_sql,
                 'header'      => [ 'Event',
                                    'Date',
                                    'Status',
                                    'Trigger',
                                    #'Inv #', 'Inv Date', 'Cust #',
                                    #'Invoice',
                                    
                                    FS::UI::Web::cust_header(), #'cust_main_custnum',
                                  ],
                 'fields' => [
                               'event',
                               sub { time2str("%b %d %Y %T", $_[0]->_date) },
                               $status_sub,
                               $trigger_sub,
                               #sub {
                               #      #my $cust_event = shift;
                               #      'Invoice #'. $_[0]->invnum.
                               #      ' ('.
                               #        time2str("%D", $_[0]->cust_bill_date).
                               #      ')';
                               #    },
                               \&FS::UI::Web::cust_fields,
                             ],
                'align' => 'lrll'.FS::UI::Web::cust_aligns(),
                'links' => [
                              '',
                              '',
                              '',
                              $trigger_link,
                              #sub {
                              #  my $part_event = shift;
                              #  #XXX
                              #  my $template = $part_event->templatename;
                              #  $template .= '-' if $template;
                              #  [ "${p}view/cust_bill.cgi?$template", 'invnum'];
                              #},

                              ( map { $_ ne 'Cust. Status' ? $link_cust : '' }
                                    FS::UI::Web::cust_header()
                              ),
                            ],
                 'color' => [ 
                              '',
                              '',
                              '',
                              '',
                              #'',
                              FS::UI::Web::cust_colors(),
                            ],
                 'style' => [ 
                              '',
                              '',
                              '',
                              '',
                              #'',
                              FS::UI::Web::cust_styles(),
                            ],
             )
%>
<%once>

my $status_sub = sub { 
  my $cust_event = shift;

  my $status = $cust_event->status;
  $status .= ': '.$cust_event->statustext
    if $cust_event->statustext;

  my $part_event = $cust_event->part_event;

  if ( $part_event->eventtable eq 'cust_bill' && $part_event->templatename ) {
    my $alt_templatename = $part_event->templatename;
    my $alt_link = "$alt_templatename-". $cust_event->tablenum;

    my $conf = new FS::Conf;
    my $cust_bill = $cust_event->cust_X;

    $status .= qq{
          ( <A HREF="${p}view/cust_bill.cgi?$alt_link">view</A>
          | <A HREF="${p}view/cust_bill-pdf.cgi?$alt_link.pdf">view
              typeset</A>
          | <A HREF="${p}misc/print-invoice.cgi?$alt_link">re-print</A>
    };

    if ( grep { $_ ne 'POST' } $cust_bill->cust_main->invoicing_list ) { 
      $status .= qq{
            | <A HREF="${p}misc/email-invoice.cgi?$alt_link">re-email</A>
      };
    } 
   
    if ( $conf->exists('hylafax') && length($cust_bill->cust_main->fax) ) { 
      $status .= qq{
            | <A HREF="${p}misc/fax-invoice.cgi?$alt_link">re-fax</A>
      }
    } 

    $status .= ' ) ';

  }

  $status;
};

my $trigger_sub = sub {
  my $cust_event = shift;
  my $eventtable = $cust_event->eventtable;
  my $label = FS::part_event->eventtable_labels->{$eventtable};
  #if ( $eventtable eq 'cust_pkg' || $eventtable eq 'cust_bill' ) {
    "$label #". $cust_event->tablenum;
  #} else {
  #  $label;
  #}
};

my $trigger_link = sub {
  my $cust_event = shift;
  my $eventtable = $cust_event->eventtable;
  if ( $eventtable eq 'cust_pkg' ) {
    my $custnum = $cust_event->cust_main_custnum;
    [ "${p}view/cust_main.cgi?$custnum#cust_pkg", 'tablenum' ];
  } else {
    [ "${p}view/$eventtable.cgi?", 'tablenum' ];
  }
};

</%once>
<%init>

my $curuser = $FS::CurrentUser::CurrentUser;

die "access denied"
  unless $curuser->access_right('Billing event reports')
      or $curuser->access_right('View customer billing events')
         && (    $cgi->param('custnum') =~ /^(\d+)$/
              || $cgi->param('invnum')  =~ /^(\d+)$/
              || $cgi->param('pkgnum')  =~ /^(\d+)$/
            );
         

my $title = $cgi->param('failed')
              ? 'Failed billing events'
              : 'Billing events';

my @search = ();

if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) {
  push @search, "cust_main.agentnum = $1";
  #my $agent = qsearchs('agent', { 'agentnum' => $1 } );
  #die "unknown agentnum $1" unless $agent;
}

my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
push @search, "cust_event._date >= $beginning",
              "cust_event._date <= $ending";

if ( $cgi->param('failed') ) {
  push @search, "statustext != ''",
                "statustext IS NOT NULL",
                "statustext != 'N/A'";
}

#if ( $cgi->param('part_event.payby') =~ /^(\w+)$/ ) {
#  push @search, "part_event.payby = '$1'";
#}

if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
  push @search, "cust_main.custnum = '$1'";
}
if ( $cgi->param('invnum') =~ /^(\d+)$/ ) {
  push @search, "part_event.eventtable = 'cust_bill'",
                "tablenum = '$1'";
}
if ( $cgi->param('pkgnum') =~ /^(\d+)$/ ) {
  push @search, "part_event.eventtable = 'cust_pkg'",
                "tablenum = '$1'";
}

#here is the agent virtualization
push @search, $curuser->agentnums_sql( 'table' => 'cust_main' );

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

my $join = "
       JOIN part_event USING ( eventpart )
  LEFT JOIN cust_bill ON ( eventtable = 'cust_bill' AND tablenum = invnum  )
  LEFT JOIN cust_pkg  ON ( eventtable = 'cust_pkg'  AND tablenum = pkgnum  )
  LEFT JOIN cust_main ON (    ( eventtable = 'cust_main' AND tablenum = cust_main.custnum )
                           OR ( eventtable = 'cust_bill' AND cust_bill.custnum = cust_main.custnum )
                           OR ( eventtable = 'cust_pkg'  AND cust_pkg.custnum  = cust_main.custnum )
                         )
";
           #'LEFT JOIN cust_main  USING ( custnum   ) ';

my $sql_query = {
  'table'     => 'cust_event',
  'select'    => join(', ',
                    'cust_event.*',
                    'part_event.*',
                    #'cust_bill.custnum',
                    #'cust_bill._date AS cust_bill_date',
                    'cust_main.custnum AS cust_main_custnum',
                    FS::UI::Web::cust_sql_fields(),
                  ),
  'hashref'   => {}, 
  'extra_sql' => "$where ORDER BY _date ASC",
  'addl_from' => $join,
};

my $count_sql = "SELECT COUNT(*) FROM cust_event $join $where";

my $conf = new FS::Conf;

my $failed = $cgi->param('failed');

my $html_init = join("\n", map {
  ( my $action = $_ ) =~ s/_$//;
  include('/elements/progress-init.html',
            $_.'form',
            [ 'action', 'beginning', 'ending', 'failed' ],
            "../misc/${_}events.cgi",
            { 'message' => "Invoices re-${action}ed" }, #would be nice to show the number of them, but...
            $_, #key
         ),
  qq!<FORM NAME="${_}form">!,
  qq!<INPUT TYPE="hidden" NAME="action" VALUE="$_">!, #not used though
  qq!<INPUT TYPE="hidden" NAME="beginning" VALUE="$beginning">!,
  qq!<INPUT TYPE="hidden" NAME="ending"    VALUE="$ending">!,
  qq!<INPUT TYPE="hidden" NAME="failed"    VALUE="$failed">!,
  qq!</FORM>!
} qw( print_ email_ fax_ ) ).

'<SCRIPT TYPE="text/javascript">

function confirm_print_process() {
  if ( ! confirm("Are you sure you want to reprint these invoices?") ) {
    return;
  }
  print_process();
}
function confirm_email_process() {
  if ( ! confirm("Are you sure you want to re-email these invoices?") ) {
    return;
  }
  email_process();
}
function confirm_fax_process() {
  if ( ! confirm("Are you sure you want to re-fax these invoices?") ) {
    return;
  }
  fax_process();
}

</SCRIPT>';

my $menubar = [];

if ( $curuser->access_right('Resend invoices') ) {

  push @$menubar, 'Re-print these events' =>
                    "javascript:confirm_print_process()",
                  'Re-email these events' =>
                    "javascript:confirm_email_process()",
                ;

  push @$menubar, 'Re-fax these events' =>
                    "javascript:confirm_fax_process()"
    if $conf->exists('hylafax');

}

my $link_cust = sub {
  my $cust_event = shift;
  $cust_event->cust_main_custnum
    ? [ "${p}view/cust_main.cgi?", 'cust_main_custnum' ]
    : '';
};

</%init>