diff options
author | Mark Wells <mark@freeside.biz> | 2016-10-13 15:35:26 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-10-14 15:06:19 -0700 |
commit | 4321924ff5a68868a7ee622920fd4bbd53d6475f (patch) | |
tree | fa5eea4c6390e266997932aab57678551394b2e5 /httemplate | |
parent | 23178237bcb103cb785829bf45cdd7a2710adabf (diff) |
per-customer option to force anniversary packages to prorate, #38191
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/cust_main/billing.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index 519f2f8f2..9836810ae 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -537,8 +537,14 @@ <TD ALIGN="right" WIDTH="200"><% mt('Prorate day (1-28)') |h %> </TD> <TD> <INPUT TYPE="text" NAME="prorate_day" VALUE="<% $cust_main->prorate_day %>" SIZE=3 MAXLENGTH=2> + <& /elements/checkbox.html, + field => 'force_prorate_day', + value => 'Y', + curr_value => $cust_main->force_prorate_day + &> + <label><% emt('Force all packages to this day') %></label> </TD> - </TR> + </TR> % } else { <INPUT TYPE="hidden" NAME="prorate_day" VALUE="<% $cust_main->prorate_day %>"> % } |