diff options
| author | Mark Wells <mark@freeside.biz> | 2013-07-10 16:52:46 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2013-07-10 16:52:46 -0700 |
| commit | 79be33a1c66fd9ba7d2da685b3a487fff172c252 (patch) | |
| tree | 03d95cbca60f1a628c59e879e217e90544d9da57 | |
| parent | 183c7c355e3f783197457f348b99b0a14ad2e1d7 (diff) | |
show discounts in change history, #18340, backport
| -rw-r--r-- | httemplate/view/cust_main/change_history.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/httemplate/view/cust_main/change_history.html b/httemplate/view/cust_main/change_history.html index ea84b8f75..bf32a49f9 100644 --- a/httemplate/view/cust_main/change_history.html +++ b/httemplate/view/cust_main/change_history.html @@ -43,10 +43,12 @@ tie my %tables, 'Tie::IxHash', 'svc_external' => 'External service', 'svc_phone' => 'Phone', 'phone_device' => 'Phone device', + 'cust_pkg_discount' => 'Discount', #? it gets provisioned anyway 'phone_avail' => 'Phone', ; -my $svc_join = 'JOIN cust_svc USING ( svcnum ) JOIN cust_pkg USING ( pkgnum )'; +my $pkg_join = "JOIN cust_pkg USING ( pkgnum )"; +my $svc_join = "JOIN cust_svc USING ( svcnum ) $pkg_join"; my %table_join = ( 'svc_acct' => $svc_join, @@ -58,6 +60,7 @@ my %table_join = ( 'svc_external' => $svc_join, 'svc_phone' => $svc_join, 'phone_device' => $svc_join, + 'cust_pkg_discount'=> $pkg_join, ); @@ -104,7 +107,7 @@ my $conf = new FS::Conf; my $curuser = $FS::CurrentUser::CurrentUser; -die "access deined" +die "access denied" unless $curuser->access_right('View customer history'); # find out the beginning of this customer history, if possible |
