mirror of
https://github.com/lnbits/lnbits.git
synced 2025-04-06 10:58:30 +02:00
add count to history
This commit is contained in:
parent
19ed61d347
commit
40410e1394
@ -683,7 +683,8 @@ async def get_payments_history(
|
||||
f"""
|
||||
SELECT {date_trunc} date,
|
||||
SUM(CASE WHEN amount > 0 THEN amount ELSE 0 END) income,
|
||||
SUM(CASE WHEN amount < 0 THEN abs(amount) + abs(fee) ELSE 0 END) spending
|
||||
SUM(CASE WHEN amount < 0 THEN abs(amount) + abs(fee) ELSE 0 END) spending,
|
||||
COUNT(*) count
|
||||
FROM apipayments
|
||||
{filters.where(where)}
|
||||
GROUP BY date
|
||||
@ -707,7 +708,11 @@ async def get_payments_history(
|
||||
results.insert(
|
||||
0,
|
||||
PaymentHistoryPoint(
|
||||
balance=balance, date=row[0], income=row[1], spending=row[2]
|
||||
balance=balance,
|
||||
date=row[0],
|
||||
income=row[1],
|
||||
spending=row[2],
|
||||
count=row[3],
|
||||
),
|
||||
)
|
||||
balance -= row.income - row.spending
|
||||
|
@ -261,6 +261,7 @@ class PaymentHistoryPoint(BaseModel):
|
||||
income: int
|
||||
spending: int
|
||||
balance: int
|
||||
count: int
|
||||
|
||||
|
||||
class BalanceCheck(BaseModel):
|
||||
|
Loading…
x
Reference in New Issue
Block a user