diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-03-01 15:29:42 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-05-25 09:53:12 -0400 |
commit | 4875cef23628acfcb280ee2d525aec5cd7bdbe9b (patch) | |
tree | c835375d12ebfe413ea7f65d3082615489f5ac9f | |
parent | c4f0fd74ef73d08f644693d2829086fddc2e7b7e (diff) |
RT# 71419 Added Cancel date option, and updated package name
-rwxr-xr-x | httemplate/search/report_svc_broadband.html | 2 | ||||
-rwxr-xr-x | httemplate/search/svc_broadband.cgi | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/search/report_svc_broadband.html b/httemplate/search/report_svc_broadband.html index bdddbb636..210112bc4 100755 --- a/httemplate/search/report_svc_broadband.html +++ b/httemplate/search/report_svc_broadband.html @@ -59,7 +59,7 @@ <SELECT NAME="cust_pkg_fields"> <OPTION VALUE="">(none) <OPTION VALUE="setup,last_bill,bill,cancel">Setup date | Last bill date | Next bill date | Cancel date - <OPTION VALUE="package,setup,last_bill,bill,cancel">Package Name, Setup date | Last bill date | Next bill date | + <OPTION VALUE="package,setup,last_bill,bill,cancel">Package Name | Setup date | Last bill date | Next bill date | Cancel date </SELECT> </TD> </TR> diff --git a/httemplate/search/svc_broadband.cgi b/httemplate/search/svc_broadband.cgi index e8cb65aaf..80345dc91 100755 --- a/httemplate/search/svc_broadband.cgi +++ b/httemplate/search/svc_broadband.cgi @@ -152,6 +152,7 @@ foreach my $pkg_field ( @pkg_fields ) { my $value; if ($pkg_field eq 'package') { $value = $cust_pkg->part_pkg->pkg; + #$value = $cust_pkg->pkg_label; } else { $value = $cust_pkg->get($pkg_field);#closures help alot |