<%doc> #Example: include( 'elements/svc_Common.html, 'table' => 'svc_something' 'labels' => { 'column' => 'Label', }, #listref - each item is a literal column name (or method) or # (notyet) coderef. if not specified all columns (except for the #primary key) will be viewable 'fields' => [ ] # defaults to "edit/$table.cgi?", will have svcnum appended 'edit_url' => #at the very bottom (well, as low as you can go from here) 'html_foot' => '', ) % if ( $custnum ) { <& /elements/header.html, mt("View [_1]: [_2]",$label,$value) &> <& /elements/small_custview.html, $custnum, '', 1, "${p}view/cust_main.cgi" &>
% } else { <& /elements/header.html, mt("View [_1]: [_2]",$label,$value), menubar( emt("Cancel this (unaudited) [_1]",$label) => "javascript:areyousure(\'${p}misc/cancel-unaudited.cgi?$svcnum\')" ) &> % } <% mt('Service #') |h %><% $svcnum %> % my $url = $opt{'edit_url'} || $p. 'edit/'. $opt{'table'}. '.cgi?'; | <& /view/elements/svc_edit_link.html, 'svc' => $svc_x &>
<% ntable("#cccccc") %><% ntable("#cccccc",2) %> % foreach my $f ( @$fields ) { % % my($field, $type, $value, $hack_strict_refs); % if ( ref($f) ) { % $field = $f->{'field'}; % $hack_strict_refs = \&{ $f->{'value'} } if $f->{'value'}; % $value = $f->{'value'} ? &$hack_strict_refs($svc_x) : $svc_x->$field; % $type = $f->{'type'} || 'text'; % } else { % $field = $f; % $value = $svc_x->$field; % $type = 'text'; % } % % my $columndef = $part_svc->part_svc_column($field); % unless ($columndef->columnflag eq 'F' && !length($columndef->columnvalue)) { <% ( $opt{labels} && exists $opt{labels}->{$field} ) ? $opt{labels}->{$field} : $field %> % $value = time2str($date_format,$value) if ( $type eq 'date' && $value ); % $value = time2str("$date_format %H:%M",$value) if ( $type eq 'datetime' && $value ); % $value = $value eq 'Y' ? emt('Yes') : emt('No') if ( $type eq 'checkbox' ); % #eventually more options for