diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-12-12 14:57:29 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-12-12 14:57:29 -0500 |
commit | 2aacf617dc20abae652017085aa1cc15cb8a8842 (patch) | |
tree | 5d75137f3f8b5fe42aef409a53de632a2824b468 /httemplate/misc/change_pkg.cgi | |
parent | e4e97a0696aa718bef0e725f2f5e3cbded98f1af (diff) |
RT# 24643 - Version 3 changes to allow for waive setup fee on change packages
Diffstat (limited to 'httemplate/misc/change_pkg.cgi')
-rwxr-xr-x | httemplate/misc/change_pkg.cgi | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/httemplate/misc/change_pkg.cgi b/httemplate/misc/change_pkg.cgi index 13fc05016..94f32e699 100755 --- a/httemplate/misc/change_pkg.cgi +++ b/httemplate/misc/change_pkg.cgi @@ -78,7 +78,14 @@ % if ( $discount_cust_pkg || $waive_setup_fee ) { <FONT CLASS="fsinnerbox-title"><% mt('Discounting') |h %></FONT> <% ntable("#cccccc") %> - <& /elements/tr-select-pkg-discount.html, disable_recur => 1, &> + +% if ( $waive_setup_fee ) { + <TR> + <TH ALIGN="right"><% mt('Waive setup fee') |h %> </TH> + <TD COLSPAN=6><INPUT TYPE="checkbox" NAME="waive_setup" VALUE="Y"></TD> + </TR> +% } + </TABLE><BR> % } |