summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2015-07-03 19:46:00 -0500
committerJonathan Prykop <jonathan@freeside.biz>2015-07-03 20:54:18 -0500
commit8da6efb71ff599762d145904c613ae75d98b10dd (patch)
tree03431818e2f0e2178f2ab782bf548ccc1ffdfcac /httemplate
parent196f6896e5da5151228ac6b923c52aa1dc90cd78 (diff)
RT#34078: Payment History Report / Statement [various fixes, integrated with selfservice]
Diffstat (limited to 'httemplate')
-rw-r--r--httemplate/view/cust_main/menu.html7
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);
},