last
This commit is contained in:
@ -48,3 +48,7 @@ async def get_debts(IDPersonalAccount: int, GetType: bool, db: Session = Depends
|
||||
@router.post("/get_financial_account", response_model=List[schemas.ReportTOFinancialAccount])
|
||||
async def get_financial_account(request: schemas.ReportTOFinancialAccountInit, db: Session = Depends(get_db)):
|
||||
return crud.PersonalAccountViewSet.get_financial_account(db, request)
|
||||
|
||||
@router.post('/edit')
|
||||
async def edit(request: schemas.PersonalAccountDetailsInit, db: Session = Depends(get_db)):
|
||||
return crud.PersonalAccountViewSet.edit(db, request)
|
Reference in New Issue
Block a user