diff --git a/app/cabinet/routes/admin_landings.py b/app/cabinet/routes/admin_landings.py index 8bfbe3c0..3c8d020d 100644 --- a/app/cabinet/routes/admin_landings.py +++ b/app/cabinet/routes/admin_landings.py @@ -550,6 +550,7 @@ class LandingPurchaseItem(BaseModel): currency: str payment_method: str | None = None status: str + referrer: str | None = None created_at: datetime | None = None paid_at: datetime | None = None @@ -1007,6 +1008,7 @@ async def get_landing_purchases( GuestPurchase.currency, GuestPurchase.payment_method, GuestPurchase.status, + GuestPurchase.referrer, GuestPurchase.created_at, GuestPurchase.paid_at, ) @@ -1032,6 +1034,7 @@ async def get_landing_purchases( currency=row.currency, payment_method=row.payment_method, status=row.status, + referrer=row.referrer, created_at=row.created_at, paid_at=row.paid_at, )