diff options
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/cust_main/billing.html | 6 | ||||
-rw-r--r-- | httemplate/elements/freeside.css | 3 | ||||
-rw-r--r-- | httemplate/view/cust_main/billing.html | 1 |
3 files changed, 9 insertions, 1 deletions
diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index 50262e82c..649c4c945 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -124,6 +124,12 @@ <SELECT NAME="prorate_day"> <% prorate_day_options($cust_main->prorate_day) %> </SELECT> + <& /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> diff --git a/httemplate/elements/freeside.css b/httemplate/elements/freeside.css index 8545ee596..c98fdcbc5 100644 --- a/httemplate/elements/freeside.css +++ b/httemplate/elements/freeside.css @@ -232,7 +232,8 @@ div.fstabcontainer { border-radius: .25em; } -.fsinnerbox th { +.fsinnerbox th, +.fsinnerbox label { font-weight:normal; font-size:80%; vertical-align: top; diff --git a/httemplate/view/cust_main/billing.html b/httemplate/view/cust_main/billing.html index 7ee05a357..8d3925a08 100644 --- a/httemplate/view/cust_main/billing.html +++ b/httemplate/view/cust_main/billing.html @@ -83,6 +83,7 @@ set_display_recurring(<% encode_json({'display_recurring' => [ $cust_main->displ <TR> <TH ALIGN="right"><% mt('Prorate day of month') |h %></TH> <TD><% $cust_main->prorate_day %> + <% $cust_main->force_prorate_day && ('<i>'.emt('(applies to all packages)').'</i>') %> </TD> </TR> % } |