diff options
author | Ivan Kohler <ivan@freeside.biz> | 2021-03-30 20:35:41 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2021-03-30 20:35:41 -0700 |
commit | d856e90f730f72d173c2eedde4c81bba20c583b8 (patch) | |
tree | 4fbfc02f2dae8139b6b555fb7f241ececa34e0c6 /httemplate | |
parent | 5bf0ab2d129310be344a9654c14796c7424138a8 (diff) |
manually enter a paypal payment, RT#85603
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/view/cust_main/menu.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/httemplate/view/cust_main/menu.html b/httemplate/view/cust_main/menu.html index 63d5c9abd..1a69c60bb 100644 --- a/httemplate/view/cust_main/menu.html +++ b/httemplate/view/cust_main/menu.html @@ -380,6 +380,15 @@ my @menu = ( # acl => [ 'Post payment', ], ## condition => sub { $payby{MCHK} }, #}, + { + label => 'Record manual (non-Freeside) Paypal payment', + popup => "edit/cust_pay.cgi?popup=1;payby=PPAL;custnum=$custnum", + actionlabel => 'Enter Paypal payment', + width => 763, + height => 392, + acl => [ 'Post Payment', 'Post Paypal payment', ], + condition => sub { $payby{PPAL} }, + }, ], }, |