diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-07-03 19:46:00 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-07-03 20:54:18 -0500 |
commit | 8da6efb71ff599762d145904c613ae75d98b10dd (patch) | |
tree | 03431818e2f0e2178f2ab782bf548ccc1ffdfcac /httemplate | |
parent | 196f6896e5da5151228ac6b923c52aa1dc90cd78 (diff) |
RT#34078: Payment History Report / Statement [various fixes, integrated with selfservice]
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/view/cust_main/menu.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/httemplate/view/cust_main/menu.html b/httemplate/view/cust_main/menu.html index 6e66ea7e6..90a20ed50 100644 --- a/httemplate/view/cust_main/menu.html +++ b/httemplate/view/cust_main/menu.html @@ -197,8 +197,9 @@ my @menu = ( url => sub { my $cust_main = shift; my $agentnum = $cust_main->agentnum; - 'misc/email-customers.html?table=cust_main;search_hash='. - 'agent_virt_agentnum='.$agentnum.";custnum=$custnum"; + 'misc/email-customers.html?table=cust_main;'. + 'agent_virt_agentnum='.$agentnum.";custnum=$custnum;url=". + uri_escape($cgi->self_url); }, condition => sub { $invoicing_list_emailonly }, acl => 'Bulk send customer notices', @@ -487,7 +488,7 @@ my @menu = ( url => sub { my $cust_main = shift; my $agentnum = $cust_main->agentnum; - 'misc/email-customer-statement.html?table=cust_main;search_hash='. + 'misc/email-customer-statement.html?table=cust_main;'. 'agent_virt_agentnum='.$agentnum.";custnum=$custnum;url=". uri_escape($cgi->self_url); }, |