From: Ivan Kohler Date: Fri, 6 Mar 2015 18:42:56 +0000 (-0800) Subject: legacy change history, RT#29311 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=92acdafd28e41e0e333d2e9df59af657f1f1242c legacy change history, RT#29311 --- diff --git a/httemplate/view/cust_main/change_history.html b/httemplate/view/cust_main/change_history.html index 6c9b6705e..09c1d6c6c 100644 --- a/httemplate/view/cust_main/change_history.html +++ b/httemplate/view/cust_main/change_history.html @@ -46,9 +46,6 @@ tie my %tables, 'Tie::IxHash', 'phone_device' => 'Phone device', 'cust_pkg_discount' => 'Discount', #? it gets provisioned anyway 'phone_avail' => 'Phone', - - 'legacy_history' => 'Label not used', - ; my $pkg_join = "JOIN cust_pkg USING ( pkgnum )"; @@ -145,7 +142,13 @@ foreach my $table ( keys %tables ) { 'extra_sql' => ' AND custnum = '. $cust_main->custnum, }); push @history, @items; - } +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; +