mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-20 13:34:37 +01:00
Invoice export should not prefix amounts with crypto code
This commit is contained in:
parent
bb0f986b0c
commit
7cf07b27e3
1 changed files with 3 additions and 3 deletions
|
@ -67,9 +67,9 @@ namespace BTCPayServer.Services.Invoices.Export
|
|||
ConversionRate = pmethod.Rate,
|
||||
PaymentType = details.GetPaymentType() == Payments.PaymentTypes.BTCLike ? "OnChain" : "OffChain",
|
||||
Destination = details.GetPaymentDestination(),
|
||||
PaymentDue = $"{accounting.MinimumTotalDue} {cryptoCode}",
|
||||
PaymentPaid = $"{accounting.CryptoPaid} {cryptoCode}",
|
||||
PaymentOverpaid = $"{accounting.OverpaidHelper} {cryptoCode}",
|
||||
PaymentDue = $"{accounting.MinimumTotalDue}",
|
||||
PaymentPaid = $"{accounting.CryptoPaid}",
|
||||
PaymentOverpaid = $"{accounting.OverpaidHelper}",
|
||||
|
||||
OrderId = invoice.OrderId,
|
||||
StoreId = invoice.StoreId,
|
||||
|
|
Loading…
Add table
Reference in a new issue