diff options
| author | Mark Wells <mark@freeside.biz> | 2013-07-06 16:50:09 -0700 | 
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2013-07-06 17:06:47 -0700 | 
| commit | 90398f046915a915f65976e33ce060ac5baabbae (patch) | |
| tree | fbf7f3702eabe8fe500584c13a7de7278727945e /httemplate/misc/order_pkg.html | |
| parent | d3b736c3603a980b67f7c69242c94f6ad31a12a1 (diff) | |
delayed package start option, #20686
Diffstat (limited to 'httemplate/misc/order_pkg.html')
| -rw-r--r-- | httemplate/misc/order_pkg.html | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/httemplate/misc/order_pkg.html b/httemplate/misc/order_pkg.html index 2332f2028..f174dd913 100644 --- a/httemplate/misc/order_pkg.html +++ b/httemplate/misc/order_pkg.html @@ -38,9 +38,12 @@      <& /elements/input-date-field.html,{                  'name'      => 'start_date',                  'format'    => $date_format, -                'value'     => $start_date, +                'value'     => '',                  'noinit'    => 1,                } &> +    <IMG SRC   = "<%$fsurl%>images/calendar-disabled.png" +         ID    = "start_date_button_disabled" +         STYLE = "display:none">      <FONT SIZE=-1>(<% mt('leave blank to start immediately') |h %>)</FONT>    </TD>  </TR> @@ -164,11 +167,6 @@ if ( $cgi->param('lock_pkgpart') ) {  my $pkgpart = $part_pkg ? $part_pkg->pkgpart : scalar($cgi->param('pkgpart'));  my $format = $date_format. ' %T %z (%Z)'; #false laziness w/REAL_cust_pkg.cgi? -my $start_date = ''; -if( ! $conf->exists('order_pkg-no_start_date') ) { -  $start_date = $cust_main->next_bill_date; -  $start_date = $start_date ? time2str($format, $start_date) : ''; -}  my $svcpart = scalar($cgi->param('svcpart')); | 
