mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Round PayPal transaction amount to two decimal points (#5318)
This commit is contained in:
parent
31e95d529f
commit
20fb45b05c
@ -296,7 +296,7 @@ public class StripeEventUtilityService : IStripeEventUtilityService
|
|||||||
btObjIdField = "provider_id";
|
btObjIdField = "provider_id";
|
||||||
btObjId = providerId.Value;
|
btObjId = providerId.Value;
|
||||||
}
|
}
|
||||||
var btInvoiceAmount = invoice.AmountDue / 100M;
|
var btInvoiceAmount = Math.Round(invoice.AmountDue / 100M, 2);
|
||||||
|
|
||||||
var existingTransactions = organizationId.HasValue
|
var existingTransactions = organizationId.HasValue
|
||||||
? await _transactionRepository.GetManyByOrganizationIdAsync(organizationId.Value)
|
? await _transactionRepository.GetManyByOrganizationIdAsync(organizationId.Value)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user