diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-25 00:51:02 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-07-03 20:54:02 -0500 |
commit | 196f6896e5da5151228ac6b923c52aa1dc90cd78 (patch) | |
tree | 2780c5db907ad1454a7ef38e4f0cbd49472810e5 /httemplate/view | |
parent | 4fe1fa31dffa6689d9cb88e2a0cda408b826b89d (diff) |
RT#34078: Payment History Report / Statement [refactor to not use msg_template]
Diffstat (limited to 'httemplate/view')
-rw-r--r-- | httemplate/view/cust_main/menu.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/view/cust_main/menu.html b/httemplate/view/cust_main/menu.html index ff8937a8f..6e66ea7e6 100644 --- a/httemplate/view/cust_main/menu.html +++ b/httemplate/view/cust_main/menu.html @@ -483,16 +483,16 @@ my @menu = ( }, }, { - label => 'Email payment history to this customer', + label => 'Email statement to this customer', url => sub { my $cust_main = shift; my $agentnum = $cust_main->agentnum; - 'misc/email-customers-history.html?table=cust_main;search_hash='. + 'misc/email-customer-statement.html?table=cust_main;search_hash='. 'agent_virt_agentnum='.$agentnum.";custnum=$custnum;url=". uri_escape($cgi->self_url); }, condition => sub { $invoicing_list_emailonly }, - acl => 'Bulk send customer notices', + acl => [ 'View invoices', 'Bulk send customer notices' ], }, ], [ |