diff options
author | Mark Wells <mark@freeside.biz> | 2016-03-10 01:20:21 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-03-10 01:20:28 -0800 |
commit | 5c9f445b375ecf56e453de2c783f11e1c572dccb (patch) | |
tree | 6398bf386784a8bac9ff9aa677961df375762e94 /httemplate/edit/svc_fiber.html | |
parent | 88fb68b7da3d03d2c8bbbee8f6b1b87dcb3f3246 (diff) |
add svc_fiber circuit id field, OLT sites, and other improvements, #35260
Diffstat (limited to 'httemplate/edit/svc_fiber.html')
-rw-r--r-- | httemplate/edit/svc_fiber.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/httemplate/edit/svc_fiber.html b/httemplate/edit/svc_fiber.html index e07caa1b1..982b0bf05 100644 --- a/httemplate/edit/svc_fiber.html +++ b/httemplate/edit/svc_fiber.html @@ -10,10 +10,15 @@ die "access denied" my $conf = new FS::Conf; my @fields = ( + { field => 'circuit_id', + type => 'input-fiber_circuit', + }, { field => 'oltnum', type => 'select-table', table => 'fiber_olt', - name_col => 'oltname', + name_col => 'description', + addl_from => 'LEFT JOIN olt_site USING (sitenum)', + order_by => 'ORDER BY market, site, oltname', hashref => { disabled => '' }, disable_empty => 1, }, |