summaryrefslogtreecommitdiff
path: root/httemplate/edit/svc_Common.html
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-09-10 01:33:25 -0700
committerIvan Kohler <ivan@freeside.biz>2013-09-10 01:33:25 -0700
commitec9b0f903dfa57efc0c82791b9efa74f0c746bc0 (patch)
treea2deef2c89f770fafce26f3d5d1b5770fc7c0536 /httemplate/edit/svc_Common.html
parentfcadc3a661a041b9119c287ade346e70f108f335 (diff)
svc_cable service have a single serial / MAC / model, not one-to-many devices like svc_phone and svc_dsl, RT#22009
Diffstat (limited to 'httemplate/edit/svc_Common.html')
-rw-r--r--httemplate/edit/svc_Common.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/httemplate/edit/svc_Common.html b/httemplate/edit/svc_Common.html
index 3da72d2e8..5949a4dc0 100644
--- a/httemplate/edit/svc_Common.html
+++ b/httemplate/edit/svc_Common.html
@@ -20,6 +20,7 @@ if ( UNIVERSAL::can("FS::$table", 'table_info') ) {
$opt{'name'} = "FS::$table"->table_info->{'name'};
my $fields = "FS::$table"->table_info->{'fields'};
+
my %labels = map { $_ => ( ref($fields->{$_})
? $fields->{$_}{'label'}
: $fields->{$_}
@@ -28,6 +29,17 @@ if ( UNIVERSAL::can("FS::$table", 'table_info') ) {
keys %$fields;
$opt{'labels'} = \%labels;
+ #transform FS::svc_* table_info's structure into one edit.html likes
+ delete $fields->{svcnum};
+ $opt{'fields'} = [ map { ref $fields->{$_}
+ ? { field => $_,
+ %{ $fields->{$_} }
+ }
+ : $_
+ } keys %$fields
+ ];
+
+
}
</%init>