diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2017-08-28 11:50:25 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2017-08-29 07:26:23 -0400 |
| commit | aa0e7222dae7df139688480534cb3cd10c84e227 (patch) | |
| tree | dfcabe4ae809d99b3aab725506112c4e5f0616b1 /httemplate/edit/deploy_zone-mobile.html | |
| parent | 9c036d4afb4f0709e7baf6e94931262a88573701 (diff) | |
RT# 77200 - Changed fixed active date to a user input date
Diffstat (limited to 'httemplate/edit/deploy_zone-mobile.html')
| -rw-r--r-- | httemplate/edit/deploy_zone-mobile.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/httemplate/edit/deploy_zone-mobile.html b/httemplate/edit/deploy_zone-mobile.html index 8cec298bf..e7f534cb8 100644 --- a/httemplate/edit/deploy_zone-mobile.html +++ b/httemplate/edit/deploy_zone-mobile.html @@ -23,8 +23,11 @@ }, 'description', { field => 'active_date', - type => 'fixed-date', - value => time, + type => 'input-date-field', + curr_value_callback => sub { + my ($cgi, $object) = @_; + $cgi->param('active_date') || $object->active_date || time; + }, }, { field => 'agentnum', type => 'select-agent', |
