[freeside-commits] branch master updated. 1ecd36ac737059c2fd80cd3260cd330df305b304
Christopher Burger
burgerc at freeside.biz
Wed Apr 24 04:23:16 PDT 2019
The branch, master has been updated
via 1ecd36ac737059c2fd80cd3260cd330df305b304 (commit)
from 66fc0c9ba5d3f460a26a51ee72ee25923d644da8 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1ecd36ac737059c2fd80cd3260cd330df305b304
Author: Christopher Burger <burgerc at freeside.biz>
Date: Wed Apr 24 07:22:31 2019 -0400
RT# 82087 - added up and down speeds to report
diff --git a/httemplate/search/svc_broadband.cgi b/httemplate/search/svc_broadband.cgi
index 53a0aa097..91d925e0b 100755
--- a/httemplate/search/svc_broadband.cgi
+++ b/httemplate/search/svc_broadband.cgi
@@ -10,6 +10,8 @@
'Router',
@tower_header,
'IP Address',
+ 'Upload Speed (Kbps)',
+ 'Download Speed (Kbps)',
@header_pkg,
emt('Pkg. Status'),
FS::UI::Web::cust_header($cgi->param('cust_fields')),
@@ -22,6 +24,8 @@
},
@tower_fields,
'ip_addr',
+ 'speed_up',
+ 'speed_down',
@fields_pkg,
sub {
$cust_pkg_cache{$_[0]->svcnum} ||= $_[0]->cust_svc->cust_pkg;
@@ -35,6 +39,8 @@
'', #$link_router,
(map '', @tower_fields),
$link, # ip_addr
+ $link, # speed_up
+ $link, # speed_down
@blank_pkg,
'', # pkg status
( map { $_ ne 'Cust. Status' ? $link_cust : '' }
@@ -42,7 +48,7 @@
),
],
'align' => 'rll'.('r' x @tower_fields).
- 'r'. # ip_addr
+ 'rrr'. # ip_addr, speed_up, speed_down
$align_pkg.
'r'. # pkg status
FS::UI::Web::cust_aligns(),
@@ -52,6 +58,8 @@
'',
(map '', @tower_fields),
'', # ip_addr
+ '', # speed_up
+ '', # speed_down
@blank_pkg,
sub {
$cust_pkg_cache{$_[0]->svcnum} ||= $_[0]->cust_svc->cust_pkg;
@@ -67,6 +75,8 @@
'',
(map '', @tower_fields),
'', # ip_addr
+ '', # speed_up
+ '', # speed_down
@blank_pkg,
'b', # pkg status
FS::UI::Web::cust_styles(),
-----------------------------------------------------------------------
Summary of changes:
httemplate/search/svc_broadband.cgi | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
More information about the freeside-commits
mailing list