summaryrefslogtreecommitdiff
path: root/conf/invoice_html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-03-27 15:45:12 -0700
committerMark Wells <mark@freeside.biz>2013-03-27 15:45:12 -0700
commit4fdaf2e78de5e32772af84b010de28656d8422fb (patch)
tree86b97f413eec0c25872f7e8b4958582cc520eb86 /conf/invoice_html
parent7db25915018db59d1337142606e225810d188239 (diff)
alignment of unit price column, #18959
Diffstat (limited to 'conf/invoice_html')
-rw-r--r--conf/invoice_html8
1 files changed, 4 insertions, 4 deletions
diff --git a/conf/invoice_html b/conf/invoice_html
index 567385b06..cd348274f 100644
--- a/conf/invoice_html
+++ b/conf/invoice_html
@@ -132,8 +132,8 @@
$OUT .= '<th align="center">' . emt('Ref') . '</th>'.
'<th align="left">' . emt('Description') . '</th>'.
( $unitprices
- ? '<th align="left">' . emt('Unit Price') . '</th>'.
- '<th align="left">' . emt('Quantity') . '</th>'
+ ? '<th align="right">' . emt('Unit Price') . '</th>'.
+ '<th align="right">' . emt('Quantity') . '</th>'
: '' ).
'<th align="right">' . emt('Amount') . '</th>';
}
@@ -158,8 +158,8 @@
( $line->{'ref'} ne $lastref ? $line->{'ref'} : '' ). '</td>'.
'<td align="left">'. $line->{'description'}. '</td>'.
( $unitprices
- ? '<td align="left">'. $line->{'unit_amount'}. '</td>'.
- '<td align="left">'. $line->{'quantity'}. '</td>'
+ ? '<td align="right">'. $line->{'unit_amount'}. '</td>'.
+ '<td align="right">'. $line->{'quantity'}. '</td>'
: ''
).