mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
Merge pull request #375 from sebastiancretu/fix_payment_receipt_currency
fix(payments): display the currency in receipts
This commit is contained in:
@ -258,7 +258,7 @@
|
|||||||
color: #595959;
|
color: #595959;
|
||||||
}
|
}
|
||||||
|
|
||||||
.total-display-box span {
|
.total-display-box .amount {
|
||||||
float: right;
|
float: right;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
@ -336,7 +336,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="total-display-box">
|
<div class="total-display-box">
|
||||||
<p class="total-display-label">@lang('pdf_payment_amount_received_label')</p>
|
<p class="total-display-label">@lang('pdf_payment_amount_received_label')</p>
|
||||||
<span>{!! format_money_pdf($payment->amount, $payment->user->currency) !!}</span>
|
<span class="amount">{!! format_money_pdf($payment->amount, $payment->user->currency) !!}</span>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user