X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fchange_history.html;h=933d66c8afafc944722a2efb6699a73d67bd1e8c;hb=HEAD;hp=bf32a49f979cf6665b327825a0cd25933fbd0cfd;hpb=d37fb0b5f49c46e0df95212ae8660a8423809305;p=freeside.git diff --git a/httemplate/view/cust_main/change_history.html b/httemplate/view/cust_main/change_history.html index bf32a49f9..933d66c8a 100644 --- a/httemplate/view/cust_main/change_history.html +++ b/httemplate/view/cust_main/change_history.html @@ -32,6 +32,7 @@ tie my %years, 'Tie::IxHash', tie my %tables, 'Tie::IxHash', 'cust_main' => 'Customer', 'cust_main_invoice' => 'Invoice destination', + 'cust_main_note' => 'Note', 'cust_pkg' => 'Package', #? or just svc_* ? 'cust_svc' => 'svc_acct' => 'Account', @@ -42,27 +43,39 @@ tie my %tables, 'Tie::IxHash', 'svc_broadband' => 'Broadband', 'svc_external' => 'External service', 'svc_phone' => 'Phone', + 'svc_cable' => 'Cable', 'phone_device' => 'Phone device', 'cust_pkg_discount' => 'Discount', #? it gets provisioned anyway 'phone_avail' => 'Phone', + 'cust_tag' => 'Tag', + 'contact' => 'Contact', + 'cust_contact' => 'Contact', + 'contact_phone' => 'Contact', + 'contact_email' => 'Contact', ; my $pkg_join = "JOIN cust_pkg USING ( pkgnum )"; my $svc_join = "JOIN cust_svc USING ( svcnum ) $pkg_join"; +my @svc_tables = qw( + svc_acct + svc_domain + svc_www + svc_forward + svc_broadband + svc_external + svc_phone + svc_cable +); + my %table_join = ( - 'svc_acct' => $svc_join, 'radius_usergroup' => $svc_join, - 'svc_domain' => $svc_join, - 'svc_www' => $svc_join, - 'svc_forward' => $svc_join, - 'svc_broadband' => $svc_join, - 'svc_external' => $svc_join, - 'svc_phone' => $svc_join, 'phone_device' => $svc_join, 'cust_pkg_discount'=> $pkg_join, ); +%table_join = (%table_join, map { $_ => $svc_join } @svc_tables); + # cust_main # cust_main_invoice @@ -132,15 +145,98 @@ my $newer_than = int( time - $years * 31556736 ); #60*60*24*365.24 local($FS::Record::nowarn_classload) = 1; +my $extra_sql = ' AND custnum = '. $cust_main->custnum; + +my %foundsvcs; foreach my $table ( keys %tables ) { + if ($tables{$table} eq 'Contact') { + + my $contact_addl_from = " + INNER JOIN (select contactnum, min(history_date) as min_history_date, max(history_date) as max_history_date, max(historynum) as max_historynum FROM h_cust_contact WHERE custnum = ".$cust_main->custnum." AND history_date >= $newer_than GROUP BY contactnum) a ON h_cust_contact.contactnum = a.contactnum + "; + + ## get list with add and remove dates of contacts for customer + my @h_cust_contacts = qsearch({ + 'table' => "h_cust_contact", + 'select' => "a.contactnum, a.min_history_date, a.max_history_date, history_action AS max_history_action", + 'addl_from' => $contact_addl_from, + 'extra_sql' => " WHERE historynum = a.max_historynum", + }); + + foreach my $c (@h_cust_contacts) { + my $max_date_sql; + $max_date_sql = " AND history_date <= ".$c->{Hash}->{max_history_date} if $c->{Hash}->{max_history_action} eq 'delete'; + + ## get history of contact while attached to customer + my @contact_history = qsearch({ + 'table' => "h_$table", + 'hashref' => { + 'history_date' => { op=>'>=', value=>($c->{Hash}->{min_history_date} - 1) }, + 'contactnum' => $c->{Hash}->{contactnum}, + }, + 'extra_sql' => $max_date_sql, + }); + push @history, @contact_history; + } + } + else { + my @items = qsearch({ + 'table' => "h_$table", + 'addl_from' => $table_join{$table}, + 'hashref' => { 'history_date' => { op=>'>=', value=>$newer_than }, }, + 'extra_sql' => $extra_sql, + }); + %foundsvcs = (%foundsvcs, map { $_->svcnum => 1 } @items) + if $table =~ /^svc/; + push @history, @items; + } +} + +### Load svcs that are no longer linked (cust_svc has been deleted) + +# get list of all svcs for this customer from h_cust_svc +# could also load svcdb here by joining to part_svc on svcpart, +# but it would spoil database optimizations on this lookup +my @svcnumobj = qsearch({ + 'select' => 'DISTINCT svcnum', + 'hashref' => { 'history_date' => { op=>'>=', value=>$newer_than } }, + 'table' => 'h_cust_svc', + 'addl_from' => 'JOIN cust_pkg USING (pkgnum)', + 'extra_sql' => ' AND custnum = '. $cust_main->custnum, +}); + +# now grab those svcs explicitly +foreach my $svcnum ( map { $_->get('svcnum') } @svcnumobj ) { + # can skip the services we already found + next if $foundsvcs{$svcnum}; + # grab any given h_cust_svc record for this svcnum to get svcdb + my $svcdbobj = qsearchs({ + 'select' => 'svcdb', + 'hashref' => { svcnum => $svcnum }, + 'table' => 'h_cust_svc', + 'addl_from' => 'JOIN part_svc USING (svcpart)', + 'extra_sql' => 'LIMIT 1', + }); + unless ($svcdbobj && $svcdbobj->get('svcdb')) { + # don't think this ever happens, but just in case, don't break history page over it + warn "Could not load svcdb for svcnum $svcnum"; + next; + } my @items = qsearch({ - 'table' => "h_$table", - 'addl_from' => $table_join{$table}, - 'hashref' => { 'history_date' => { op=>'>=', value=>$newer_than }, }, - 'extra_sql' => ' AND custnum = '. $cust_main->custnum, + 'table' => "h_".$svcdbobj->get('svcdb'), + 'hashref' => { 'history_date' => { op=>'>=', value=>$newer_than }, + 'svcnum' => $svcnum }, }); push @history, @items; - } +## legacy history + +my @legacy_items = qsearch({ + 'table' => 'legacy_cust_history', + 'hashref' => { 'history_date' => { op=>'>=', value=>$newer_than }, }, + 'extra_sql' => ' AND custnum = '. $cust_main->custnum, +}); +push @history, @legacy_items; +