summaryrefslogtreecommitdiff
path: root/httemplate/view
diff options
context:
space:
mode:
authorjeff <jeff>2007-01-12 02:04:50 +0000
committerjeff <jeff>2007-01-12 02:04:50 +0000
commit2a863bbb144830dfb8fca4afb3af76a84a647c76 (patch)
tree5fc99ff26ac56fe7bae152947a495166c5cc6e42 /httemplate/view
parent61f3f998fe85b1d099100fbe52bc238deebf80f0 (diff)
one-time charge enhancements
Diffstat (limited to 'httemplate/view')
-rwxr-xr-xhttemplate/view/cust_main/packages.html11
1 files changed, 6 insertions, 5 deletions
diff --git a/httemplate/view/cust_main/packages.html b/httemplate/view/cust_main/packages.html
index 37f3ec4bb..6ec92ef0d 100755
--- a/httemplate/view/cust_main/packages.html
+++ b/httemplate/view/cust_main/packages.html
@@ -16,7 +16,8 @@
% ) {
%
- <% include('quick-charge.html', $cust_main ) %>
+ <% popup_link('edit/quick-charge.html?custnum='. $cust_main->custnum, 'One-time charge', 'One-time charge', 684) %>
+ <BR>
% }
% if ( $curuser->access_right('Bulk change customer packages') ) {
@@ -518,19 +519,19 @@ Current packages
% my($action, $label, $actionlabel, $cust_pkg) = @_;
% $action .= '&pkgnum='. $cust_pkg->pkgnum;
% $actionlabel .= ' package '. $cust_pkg->pkgnum;
-% popup_link($action, $label, $actionlabel);
+% popup_link($action, $label, $actionlabel, 392);
%}
%
%sub svc_popup_link {
% my($action, $label, $actionlabel, $cust_svc) = @_;
% $action .= '?svcnum='. $cust_svc->svcnum;
% $actionlabel .= ' service '. $cust_svc->svcnum;
-% popup_link($action, $label, $actionlabel);
+% popup_link($action, $label, $actionlabel, 392);
%}
%
%sub popup_link {
-% my($action, $label, $actionlabel) = @_;
-% qq!<A HREF="javascript:void(0);" onClick="overlib( OLiframeContent('$p$action', 392, 336, 'pkg_or_svc_action_popup' ), CAPTION, '$actionlabel', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK ); return false;">$label</A>!;
+% my($action, $label, $actionlabel, $width) = @_;
+% qq!<A HREF="javascript:void(0);" onClick="overlib( OLiframeContent('$p$action', $width, 336, 'pkg_or_svc_action_popup' ), CAPTION, '$actionlabel', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK ); return false;">$label</A>!;
%}
%
%sub pkg_customize_link {