diff options
author | ivan <ivan> | 2002-10-25 13:39:02 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-10-25 13:39:02 +0000 |
commit | bcc33ffd55343ce8c2e8f576997ce10018b9d716 (patch) | |
tree | 7a27dffd5d781ffae54276ccc84c1e9c73b55fb5 /httemplate/edit/part_svc.cgi | |
parent | 1583472a6afefb1ad33e05656fd206674f37d9df (diff) |
show export numbers
Diffstat (limited to 'httemplate/edit/part_svc.cgi')
-rwxr-xr-x | httemplate/edit/part_svc.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/edit/part_svc.cgi b/httemplate/edit/part_svc.cgi index 5fbec4f88..0ee0a468a 100755 --- a/httemplate/edit/part_svc.cgi +++ b/httemplate/edit/part_svc.cgi @@ -154,7 +154,7 @@ my %defs = ( my @part_export = map { qsearch( 'part_export', {exporttype => $_ } ) } keys %{FS::part_export::export_info($layer)}; - $html .= '<BR><BR>'. table(). + $html .= '<BR><BR>'. table(). table(). "<TR><TH COLSPAN=$columns>Exports</TH></TR><TR>"; foreach my $part_export ( @part_export ) { $html .= '<TD><INPUT TYPE="checkbox"'. @@ -163,8 +163,8 @@ my %defs = ( if qsearchs( 'export_svc', { exportnum => $part_export->exportnum, svcpart => $clone || $part_svc->svcpart }); - $html .= '> '. $part_export->exporttype. ' to '. $part_export->machine. - '</TD>'; + $html .= '>'. $part_export->exportnum. ': '. $part_export->exporttype. + ' to '. $part_export->machine. '</TD>'; $count++; $html .= '</TR><TR>' unless $count % $columns; } |