summaryrefslogtreecommitdiff
path: root/bin/rp.pl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/rp.pl')
-rwxr-xr-xbin/rp.pl10
1 files changed, 8 insertions, 2 deletions
diff --git a/bin/rp.pl b/bin/rp.pl
index b696a5c4..1f044879 100755
--- a/bin/rp.pl
+++ b/bin/rp.pl
@@ -994,8 +994,14 @@ qq|rp.pl?path=$form->{path}&action=continue&accounttype=$form->{accounttype}&log
print qq|
<tr class="listrow$i">
|;
- map { print "<td>$ref->{$_}</td>\n" } @column_index;
-
+ for (@column_index) {
+ if ($_ eq 'description' or $_ eq 'partnumber') {
+ print '<td>';
+ } else {
+ print '<td align="right">';
+ }
+ print "$ref->{$_}</td>\n";
+ }
print qq|
</tr>
|;