mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
GetTransactionDate
This commit is contained in:
parent
b4f026a946
commit
2f5410de28
@ -8,6 +8,7 @@ using Microsoft.Extensions.Logging;
|
|||||||
using Microsoft.Extensions.Options;
|
using Microsoft.Extensions.Options;
|
||||||
using System;
|
using System;
|
||||||
using System.Data.SqlClient;
|
using System.Data.SqlClient;
|
||||||
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Bit.Billing.Controllers
|
namespace Bit.Billing.Controllers
|
||||||
@ -104,7 +105,7 @@ namespace Bit.Billing.Controllers
|
|||||||
var tx = new Core.Models.Table.Transaction
|
var tx = new Core.Models.Table.Transaction
|
||||||
{
|
{
|
||||||
Amount = invoice.Price,
|
Amount = invoice.Price,
|
||||||
CreationDate = invoice.CurrentTime.DateTime,
|
CreationDate = GetTransactionDate(invoice),
|
||||||
OrganizationId = ids.Item1,
|
OrganizationId = ids.Item1,
|
||||||
UserId = ids.Item2,
|
UserId = ids.Item2,
|
||||||
Type = TransactionType.Charge,
|
Type = TransactionType.Charge,
|
||||||
@ -160,6 +161,17 @@ namespace Bit.Billing.Controllers
|
|||||||
return invoice != null && invoice.PosData != null && invoice.PosData.Contains("accountCredit:1");
|
return invoice != null && invoice.PosData != null && invoice.PosData.Contains("accountCredit:1");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private DateTime GetTransactionDate(NBitpayClient.Invoice invoice)
|
||||||
|
{
|
||||||
|
var transactions = invoice.Transactions?.Where(t => t.Type == null &&
|
||||||
|
!string.IsNullOrWhiteSpace(t.Confirmations) && t.Confirmations != "0");
|
||||||
|
if(transactions != null && transactions.Count() == 1)
|
||||||
|
{
|
||||||
|
return transactions.First().ReceivedTime.DateTime;
|
||||||
|
}
|
||||||
|
return invoice.CurrentTime.DateTime;
|
||||||
|
}
|
||||||
|
|
||||||
public Tuple<Guid?, Guid?> GetIdsFromPosData(NBitpayClient.Invoice invoice)
|
public Tuple<Guid?, Guid?> GetIdsFromPosData(NBitpayClient.Invoice invoice)
|
||||||
{
|
{
|
||||||
Guid? orgId = null;
|
Guid? orgId = null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user