RT# 79497 - Changed email address check to all emails to be seperated by a space...
[freeside.git] / httemplate / view / cust_main / change_history.html
1 % if ( int( time - (keys %years)[0] * 31556736 ) > $start ) {
2     Show:
3 %   my $chy = $cgi->param('change_history-years');
4 %   foreach my $y (keys %years) {
5 %     if ( $y == $years ) {
6         <FONT SIZE="+1"><% $years{$y} %></FONT>
7 %     } else {
8 %       $cgi->param('change_history-years', $y);
9         <A HREF="<% $cgi->self_url %>"><% $years{$y} %></A>
10 %     }
11 %     last if int( time - $y * 31556736 ) < $start;
12 %   }
13 %   $cgi->param('change_history-years', $chy);
14 % }
15
16 <% include("/elements/change_history_common.html",
17         'history'   => \@history,
18         'tables'    => \%tables,
19         'single_cust'   => 1,
20     ) %>
21
22 <%init>
23
24 tie my %years, 'Tie::IxHash',
25     .5 => '6 months',
26    1  => '1 year',
27    2  => '2 years',
28    5  => '5 years',
29   39  => 'all history',
30 ;
31
32 tie my %tables, 'Tie::IxHash',
33   'cust_main'         => 'Customer',
34   'cust_main_invoice' => 'Invoice destination',
35   'cust_main_note'    => 'Note',
36   'cust_pkg'          => 'Package',
37   #? or just svc_* ? 'cust_svc' => 
38   'svc_acct'          => 'Account',
39   'radius_usergroup'  => 'RADIUS group',
40   'svc_domain'        => 'Domain',
41   'svc_www'           => 'Hosting',
42   'svc_forward'       => 'Mail forward',
43   'svc_broadband'     => 'Broadband',
44   'svc_external'      => 'External service',
45   'svc_phone'         => 'Phone',
46   'svc_cable'         => 'Cable',
47   'phone_device'      => 'Phone device',
48   'cust_pkg_discount' => 'Discount',
49   #? it gets provisioned anyway 'phone_avail'         => 'Phone',
50   'cust_tag'          => 'Tag',
51   'contact'           => 'Contact',
52 ;
53
54 my $pkg_join = "JOIN cust_pkg USING ( pkgnum )";
55 my $svc_join = "JOIN cust_svc USING ( svcnum ) $pkg_join";
56
57 my @svc_tables = qw(
58   svc_acct
59   svc_domain
60   svc_www
61   svc_forward
62   svc_broadband
63   svc_external
64   svc_phone
65   svc_cable
66 );
67
68 my %table_join = (
69   'radius_usergroup' => $svc_join,
70   'phone_device'     => $svc_join,
71   'cust_pkg_discount'=> $pkg_join,
72   'contact'          => "JOIN cust_contact USING ( contactnum )",
73 );
74
75 %table_join = (%table_join, map { $_ => $svc_join } @svc_tables);
76
77
78 # cust_main
79 # cust_main_invoice
80
81 # cust_pkg
82 # cust_pkg_option?
83 # cust_pkg_detail
84 # cust_pkg_reason?  no
85
86 #cust_svc
87 #cust_svc_option?
88 #svc_*
89 # svc_acct
90 #  radius_usergroup
91 #  acct_snarf?  is this even used? it is now, for communigate RPOP
92 # svc_domain
93 #  domain_record
94 #  registrar
95 # svc_forward
96 # svc_www
97 # svc_broadband
98 #  (virtual fields?  eh... maybe when they're real)
99 # svc_external
100 # svc_phone
101 #  phone_device
102 #  phone_avail
103
104 # future:
105
106 # inventory_item (from services)
107 # pkg_referral? (changed?)
108
109 #random others:
110
111 # cust_location?
112 # cust_main-exemption?? (295.ca named tax exemptions)
113
114
115 my( $cust_main ) = @_;
116
117 my $conf = new FS::Conf;
118
119 my $curuser = $FS::CurrentUser::CurrentUser;
120
121 die "access denied"
122   unless $curuser->access_right('View customer history');
123
124 # find out the beginning of this customer history, if possible
125 my $h_insert = qsearchs({
126   'table'     => 'h_cust_main',
127   'hashref'   => { 'custnum'        => $cust_main->custnum,
128                    'history_action' => 'insert',
129                  },
130   'extra_sql' => 'ORDER BY historynum LIMIT 1',
131 });
132 my $start = $h_insert ? $h_insert->history_date : 0;
133
134 # retreive the history
135
136 my @history = ();
137
138 my $years = $conf->config('change_history-years') || .5;
139 if ( $cgi->param('change_history-years') =~ /^([\d\.]+)$/ ) {
140   $years = $1;
141 }
142 my $newer_than = int( time - $years * 31556736 ); #60*60*24*365.24
143
144 local($FS::Record::nowarn_classload) = 1;
145
146 my $extra_sql = ' AND custnum = '. $cust_main->custnum;
147
148 my %foundsvcs;
149 foreach my $table ( keys %tables ) {
150   $extra_sql = ' AND cust_contact.custnum = '. $cust_main->custnum if $table eq 'contact';
151   my @items = qsearch({
152     'table'     => "h_$table",
153     'addl_from' => $table_join{$table},
154     'hashref'   => { 'history_date' =>  { op=>'>=', value=>$newer_than }, },
155     'extra_sql' => $extra_sql,
156   });
157   %foundsvcs = (%foundsvcs, map { $_->svcnum => 1 } @items)
158     if $table =~ /^svc/;
159   push @history, @items;
160 }
161
162 ### Load svcs that are no longer linked (cust_svc has been deleted)
163
164 # get list of all svcs for this customer from h_cust_svc
165 # could also load svcdb here by joining to part_svc on svcpart,
166 #   but it would spoil database optimizations on this lookup
167 my @svcnumobj = qsearch({
168   'select' => 'DISTINCT svcnum',
169   'hashref'   => { 'history_date' =>  { op=>'>=', value=>$newer_than } },
170   'table'  => 'h_cust_svc',
171   'addl_from' => 'JOIN cust_pkg USING (pkgnum)',
172   'extra_sql' => ' AND custnum = '. $cust_main->custnum,
173 });
174
175 # now grab those svcs explicitly 
176 foreach my $svcnum ( map { $_->get('svcnum') } @svcnumobj ) {
177   # can skip the services we already found
178   next if $foundsvcs{$svcnum};
179   # grab any given h_cust_svc record for this svcnum to get svcdb
180   my $svcdbobj = qsearchs({
181     'select' => 'svcdb',
182     'hashref' => { svcnum => $svcnum },
183     'table'  => 'h_cust_svc',
184     'addl_from' => 'JOIN part_svc USING (svcpart)',
185     'extra_sql' => 'LIMIT 1',
186   });
187   unless ($svcdbobj && $svcdbobj->get('svcdb')) {
188     # don't think this ever happens, but just in case, don't break history page over it
189     warn "Could not load svcdb for svcnum $svcnum";
190     next;
191   }
192   my @items = qsearch({
193     'table'     => "h_".$svcdbobj->get('svcdb'),
194     'hashref'   => { 'history_date' =>  { op=>'>=', value=>$newer_than },
195                      'svcnum' => $svcnum },
196   });
197   push @history, @items;
198 }
199
200 ## legacy history
201
202 my @legacy_items = qsearch({
203   'table'     => 'legacy_cust_history',
204   'hashref'   => { 'history_date' =>  { op=>'>=', value=>$newer_than }, },
205   'extra_sql' => ' AND custnum = '. $cust_main->custnum,
206 });
207 push @history, @legacy_items;
208
209 </%init>