[freeside-commits] branch FREESIDE_2_3_BRANCH updated. e1711100b87526ce131ec813263ba1f0fa292986
Ivan
ivan at 420.am
Sun May 13 16:26:42 PDT 2012
The branch, FREESIDE_2_3_BRANCH has been updated
via e1711100b87526ce131ec813263ba1f0fa292986 (commit)
from b31ccee3c201f4aa7d0f4f6787f602f6efadbde5 (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 e1711100b87526ce131ec813263ba1f0fa292986
Author: Ivan Kohler <ivan at freeside.biz>
Date: Sun May 13 16:26:41 2012 -0700
add cust_main-custom_content config item for Globelink's custom customer view, RT#17579
diff --git a/httemplate/view/cust_main/custom_content/svc_Common.html b/httemplate/view/cust_main/custom_content/svc_Common.html
index 519a395..1c7ae4e 100644
--- a/httemplate/view/cust_main/custom_content/svc_Common.html
+++ b/httemplate/view/cust_main/custom_content/svc_Common.html
@@ -1,6 +1,5 @@
% foreach my $cust_svc (@cust_svc) {
% my $svc_x = $cust_svc->svc_x;
-% #warn $svc_x;
<TABLE CLASS="fsinnerbox">
% foreach my $field ( grep $svc_x->$_(), @{ $opt{fields} } ) {
<& /elements/tr-td-label.html, 'label' => $labels{$field} &>
@@ -13,14 +12,12 @@
my($cust_main, %opt) = @_;
my $table = $opt{table};
-warn $table;
my @cust_svc = ();
foreach my $cust_pkg (
- grep {warn $_->num_cust_svc( 'svcdb'=>$table ); $_->num_cust_svc( 'svcdb'=>$table ); }
+ grep $_->num_cust_svc( 'svcdb'=>$table ),
$cust_main->all_pkgs
) {
my @wtf = $cust_pkg->cust_svc( 'svcdb'=>$table );
- warn scalar(@wtf);
push @cust_svc, $cust_pkg->cust_svc( 'svcdb'=>$table );
}
-----------------------------------------------------------------------
Summary of changes:
.../view/cust_main/custom_content/svc_Common.html | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
More information about the freeside-commits
mailing list