átlagos kiegészítséek jó sok
This commit is contained in:
@@ -25,9 +25,9 @@ from sqlalchemy import select, func, text
|
||||
|
||||
from app.database import Base
|
||||
from app.models.identity import User, Person, Wallet
|
||||
from app.models.finance import Issuer, IssuerType
|
||||
from app.models.audit import WalletType
|
||||
from app.models.audit import FinancialLedger, LedgerEntryType
|
||||
from app.models.marketplace.finance import Issuer, IssuerType
|
||||
from app.models import WalletType
|
||||
from app.models import FinancialLedger, LedgerEntryType
|
||||
from app.services.financial_orchestrator import FinancialOrchestrator
|
||||
from app.core.config import settings
|
||||
|
||||
@@ -62,7 +62,7 @@ class FinancialTruthTest:
|
||||
|
||||
# Meglévő aktív számlakiállítók inaktiválása, hogy a teszt saját issuereit használja
|
||||
from sqlalchemy import update
|
||||
from app.models.finance import Issuer
|
||||
from app.models.marketplace.finance import Issuer
|
||||
stmt = update(Issuer).where(Issuer.is_active == True).values(is_active=False)
|
||||
await self.session.execute(stmt)
|
||||
await self.session.flush()
|
||||
|
||||
Reference in New Issue
Block a user