alchemy flush and save functions updated

This commit is contained in:
berkay 2024-11-11 18:55:53 +03:00
parent c42a19c262
commit 1f1222c32d
163 changed files with 6296 additions and 476 deletions

View File

@ -64,7 +64,6 @@ class AuthenticationLoginEventMethods(MethodToEvent):
cls, cls,
data: Login, data: Login,
request, request,
token_dict: typing.Union[EmployeeTokenObject, OccupantTokenObject],
): ):
access_dict = Users.login_user_with_credentials(data=data, request=request) access_dict = Users.login_user_with_credentials(data=data, request=request)
found_user = access_dict.get("user", None) found_user = access_dict.get("user", None)
@ -377,40 +376,40 @@ class AuthenticationCreatePasswordEventMethods(MethodToEvent):
raise HTTPException( raise HTTPException(
status_code=status.HTTP_406_NOT_ACCEPTABLE, detail="Password must match" status_code=status.HTTP_406_NOT_ACCEPTABLE, detail="Password must match"
) )
if found_user := Users.filter_one( found_user = Users.filter_one(
Users.password_token == data.password_token, Users.password_token == data.password_token,
*Users.valid_record_args(Users), *Users.valid_record_args(Users),
).data: ).data
found_user.create_password(password=data.password) if not found_user:
found_user.password_token = None
found_user.save()
send_email_completed = send_email(
subject=f"Dear {found_user.user_tag}, your password has been changed.",
receivers=[str(found_user.email)],
html=password_is_changed_template(user_name=found_user.user_tag),
)
if not send_email_completed:
raise HTTPException(
status_code=400, detail="Email can not be sent. Try again later"
)
return JSONResponse( return JSONResponse(
content={ content={
"completed": True, "completed": False,
"message": "Password is created successfully", "message": "Record not found",
"data": found_user.get_dict(), "data": {},
}, },
status_code=status.HTTP_200_OK, status_code=status.HTTP_202_ACCEPTED,
) )
found_user.create_password(found_user=found_user,password=data.password)
# send_email_completed = send_email(
# subject=f"Dear {found_user.user_tag}, your password has been changed.",
# receivers=[str(found_user.email)],
# html=password_is_changed_template(user_name=found_user.user_tag),
# )
# if not send_email_completed:
# raise HTTPException(
# status_code=400, detail="Email can not be sent. Try again later"
# )
return JSONResponse( return JSONResponse(
content={ content={
"completed": False, "completed": True,
"message": "Record not found", "message": "Password is created successfully",
"data": {}, "data": found_user.get_dict(),
}, },
status_code=status.HTTP_202_ACCEPTED, status_code=status.HTTP_200_OK,
) )
class AuthenticationDisconnectUserEventMethods(MethodToEvent): class AuthenticationDisconnectUserEventMethods(MethodToEvent):
event_type = "UPDATE" event_type = "UPDATE"

View File

@ -138,13 +138,17 @@ def parse_comment_with_name(iban: str, comment: str):
def wag_insert_budget_record(data): def wag_insert_budget_record(data):
similarity_result = parse_comment_with_name(data["iban"], data["process_comment"]) similarity_result = parse_comment_with_name(data["iban"], data["process_comment"])
build_iban = BuildIbans.find_one(iban=data["iban"]) build_iban = BuildIbans.find_one(iban=data["iban"])
if payload := InsertBudgetRecord(**data): if payload := InsertBudgetRecord(**data):
payload_dict = payload.model_dump(exclude_unset=True, exclude_none=True) payload_dict = payload.model_dump(exclude_unset=True, exclude_none=True)
decision_book, count = BuildDecisionBook.filter( decision_books = BuildDecisionBook.select_only(
BuildDecisionBook.period_start_date BuildDecisionBook.period_start_date
< strip_date_to_valid(payload_dict["bank_date"]), < strip_date_to_valid(payload_dict["bank_date"]),
BuildDecisionBook.period_stop_date BuildDecisionBook.period_stop_date
> strip_date_to_valid(payload_dict["bank_date"]), > strip_date_to_valid(payload_dict["bank_date"]),
select_args=[BuildDecisionBook.id],
order_by=[BuildDecisionBook.expiry_ends.desc()],
) )
payload_dict["build_id"] = getattr( payload_dict["build_id"] = getattr(
BuildIbans.find_one(iban=data["iban"]), "build_id", None BuildIbans.find_one(iban=data["iban"]), "build_id", None
@ -168,7 +172,7 @@ def wag_insert_budget_record(data):
# BuildLivingSpace.deleted == False, # BuildLivingSpace.deleted == False,
# ) # )
payload_dict["build_decision_book_id"] = ( payload_dict["build_decision_book_id"] = (
decision_book[0].id if decision_book else None decision_books[0][0].id if decision_books else None
) )
payload_dict["company_id"] = similarity_result.get("company_id", None) payload_dict["company_id"] = similarity_result.get("company_id", None)
payload_dict["customer_id"] = similarity_result.get("customer_id", None) payload_dict["customer_id"] = similarity_result.get("customer_id", None)

View File

@ -50,15 +50,18 @@ def save_access_token_to_redis(
Employees, Employees,
Staff, Staff,
) )
print('save_access_token_to_redis')
if not found_user: if not found_user:
raise HTTPException( raise HTTPException(
status_code=400, status_code=400,
detail=dict(message="User is not found."), detail=dict(message="User is not found."),
headers=request.headers, # headers=json.loads(json.dumps(request.headers)),
) )
print('save_access_token_to_redis', found_user)
# Check user is already logged in or has a previous session # Check user is already logged in or has a previous session
already_tokens = get_object_via_user_uu_id(user_id=found_user.uu_id) already_tokens = get_object_via_user_uu_id(user_id=found_user.uu_id)
print('already_tokens', already_tokens)
for key in already_tokens or []: for key in already_tokens or []:
token_user = json.loads(redis_cli.get(key).decode() or {}) token_user = json.loads(redis_cli.get(key).decode() or {})
if token_user.get("domain", "") == domain: if token_user.get("domain", "") == domain:
@ -67,11 +70,11 @@ def save_access_token_to_redis(
access_token = ( access_token = (
found_user.generate_access_token() if not access_token else access_token found_user.generate_access_token() if not access_token else access_token
) )
print('access_token', access_token)
# Prepare the user's details to save in Redis Session # Prepare the user's details to save in Redis Session
if found_user.is_occupant: # Check if user is NOT an occupant if found_user.is_occupant: # Check if user is NOT an occupant
living_spaces: list[BuildLivingSpace] = BuildLivingSpace.filter_active( living_spaces: list[BuildLivingSpace] = BuildLivingSpace.filter_all(
BuildLivingSpace.person_id == found_user.person_id, filter_records=False BuildLivingSpace.person_id == found_user.person_id
).data ).data
if not living_spaces: if not living_spaces:
raise HTTPException( raise HTTPException(
@ -79,9 +82,9 @@ def save_access_token_to_redis(
detail=dict( detail=dict(
message="NO Living Space is found. This user has no proper account set please contact the admin." message="NO Living Space is found. This user has no proper account set please contact the admin."
), ),
headers=request.headers, # headers=json.loads(json.dumps(request.headers)),
) )
print('living_spaces', living_spaces)
occupants_selection_dict = {} occupants_selection_dict = {}
for living_space in living_spaces: for living_space in living_spaces:
build_parts_selection = BuildParts.filter_active( build_parts_selection = BuildParts.filter_active(
@ -93,7 +96,7 @@ def save_access_token_to_redis(
detail=dict( detail=dict(
message="No build Part is found for the living space. Please contact the admin." message="No build Part is found for the living space. Please contact the admin."
), ),
headers=request.headers, # headers=json.loads(json.dumps(request.headers)),
) )
build_part = build_parts_selection.get(1) build_part = build_parts_selection.get(1)

View File

@ -1,11 +1,11 @@
from fastapi import HTTPException, status from fastapi import HTTPException, status
from fastapi.requests import Request
def parse_token_object_to_dict(request: Request): # from requests import Request def parse_token_object_to_dict(request): # from requests import Request
import api_events.events as events
from api_services.redis.functions import get_object_via_access_key from api_services.redis.functions import get_object_via_access_key
from databases import EndpointRestriction, Events from databases import EndpointRestriction, Events
import api_events.events as events
if valid_token := get_object_via_access_key(request=request): if valid_token := get_object_via_access_key(request=request):
endpoint_name = str(request.url).replace(str(request.base_url), "/") endpoint_name = str(request.url).replace(str(request.base_url), "/")

View File

@ -1,9 +1,6 @@
import json import json
import typing import typing
from fastapi import status
from fastapi.exceptions import HTTPException
from .conn import redis_cli from .conn import redis_cli
from api_configs import Auth from api_configs import Auth
@ -13,6 +10,9 @@ from api_objects import EmployeeTokenObject, OccupantTokenObject
def get_object_via_access_key( def get_object_via_access_key(
request, request,
) -> typing.Union[EmployeeTokenObject, OccupantTokenObject, None]: ) -> typing.Union[EmployeeTokenObject, OccupantTokenObject, None]:
from fastapi import status
from fastapi.exceptions import HTTPException
if not hasattr(request, "headers"): if not hasattr(request, "headers"):
raise HTTPException( raise HTTPException(
status_code=401, status_code=401,
@ -28,6 +28,7 @@ def get_object_via_access_key(
already_tokens = redis_cli.scan_iter( already_tokens = redis_cli.scan_iter(
match=str(request.headers.get(Auth.ACCESS_TOKEN_TAG) + ":*") match=str(request.headers.get(Auth.ACCESS_TOKEN_TAG) + ":*")
) )
print('already_tokens', already_tokens)
if already_tokens := list(already_tokens): if already_tokens := list(already_tokens):
try: try:

View File

@ -32,6 +32,11 @@ class PasswordModule:
@classmethod @classmethod
def check_hashed_password(cls, domain, id_, password, password_hashed): def check_hashed_password(cls, domain, id_, password, password_hashed):
if not password_hashed:
raise HTTPException(
status_code=401,
detail="Password is not changed yet user has no password.",
)
return cls.create_hashed_password(domain, id_, password) == password_hashed return cls.create_hashed_password(domain, id_, password) == password_hashed
@ -83,12 +88,19 @@ class AuthModule(PasswordModule):
def check_password(self, password): def check_password(self, password):
main_domain = self.get_main_domain_and_other_domains(get_main_domain=True) main_domain = self.get_main_domain_and_other_domains(get_main_domain=True)
print('check_password', dict(
domain=main_domain,
id_=str(self.uu_id),
password_hashed=self.hash_password,
password=password,
))
if check_password := self.check_hashed_password( if check_password := self.check_hashed_password(
domain=main_domain, domain=main_domain,
id_=self.uu_id, id_=str(self.uu_id),
password_hashed=self.hash_password, password_hashed=self.hash_password,
password=password, password=password,
): ):
print('check_password', check_password)
return check_password return check_password
raise HTTPException( raise HTTPException(
status_code=401, status_code=401,
@ -105,59 +117,59 @@ class AuthModule(PasswordModule):
detail="New password is same with old password.", detail="New password is same with old password.",
) )
def create_password(self, password, password_token=None): @staticmethod
from databases import ( def create_password(found_user, password, password_token=None):
MongoQueryIdentity, from databases import MongoQueryIdentity
) if found_user.password_token:
if self.password_token:
replace_day = 0 replace_day = 0
try: try:
replace_day = int( replace_day = int(
str(self.password_expires_day or 0) str(found_user.password_expires_day or 0)
.split(",")[0] .split(",")[0]
.replace(" days", "") .replace(" days", "")
) )
except Exception as e: except Exception as e:
err = e err = e
token_is_expired = system_arrow.now() >= system_arrow.get( token_is_expired = system_arrow.now() >= system_arrow.get(
self.password_expiry_begins found_user.password_expiry_begins
).shift(days=replace_day) ).shift(days=replace_day)
if not password_token == self.password_token and token_is_expired: if not password_token == found_user.password_token and token_is_expired:
raise HTTPException( raise HTTPException(
status_code=401, status_code=401,
detail="Password token is not valid. Please request a new password token.", detail="Password token is not valid. Please request a new password token.",
) )
query_engine = MongoQueryIdentity(company_uuid=found_user.related_company)
query_engine = MongoQueryIdentity(company_uuid=self.related_company) domain_via_user = query_engine.get_domain_via_user(user_uu_id=str(found_user.uu_id))[
domain_via_user = query_engine.get_domain_via_user(user_uu_id=str(self.uu_id))[
"main_domain" "main_domain"
] ]
new_password_dict = { new_password_dict = {
"password": self.create_hashed_password( "password": found_user.create_hashed_password(
domain=domain_via_user, id_=self.uu_id, password=password domain=domain_via_user, id_=str(found_user.uu_id), password=password
), ),
"date": str(system_arrow.now()), "date": str(system_arrow.now().date()),
} }
history_dict = PasswordHistoryViaUser( history_dict = PasswordHistoryViaUser(
user_uu_id=str(self.uu_id), user_uu_id=str(found_user.uu_id),
password_add=new_password_dict, password_add=new_password_dict,
access_history_detail={ access_history_detail={
"request": "", "request": "",
"ip": "", "ip": "",
}, },
) )
found_user.password_expiry_begins = str(system_arrow.now())
found_user.hash_password = new_password_dict.get("password")
found_user.password_token = "" if found_user.password_token else ""
found_user.save()
query_engine.refresh_password_history_via_user(payload=history_dict) query_engine.refresh_password_history_via_user(payload=history_dict)
self.password_expiry_begins = str(system_arrow.now()) return
self.hash_password = new_password_dict.get("password")
if self.password_token:
self.password_token = None
self.save()
def reset_password_token(self): @staticmethod
self.password_expiry_begins = str(system_arrow.now()) def reset_password_token(found_user):
self.password_token = self.generate_token(127) found_user.password_expiry_begins = str(system_arrow.now())
self.save() found_user.password_token = found_user.generate_token(127)
found_user.save()
def generate_refresher_token(self, domain: str, remember_me=False): def generate_refresher_token(self, domain: str, remember_me=False):
from databases import ( from databases import (
@ -212,8 +224,8 @@ class UserLoginModule(AuthModule):
) )
access_token = found_user.generate_access_token() access_token = found_user.generate_access_token()
query_engine = MongoQueryIdentity(company_uuid=found_user.related_company) query_engine = MongoQueryIdentity(company_uuid=found_user.related_company)
if found_user.check_password(password=data.password): if found_user.check_password(password=data.password):
print('before access_object_to_redis')
access_object_to_redis = save_access_token_to_redis( access_object_to_redis = save_access_token_to_redis(
request=request, request=request,
found_user=found_user, found_user=found_user,

View File

@ -1,6 +1,8 @@
import datetime import datetime
from fastapi import HTTPException from fastapi import HTTPException
from api_library.date_time_actions.date_functions import system_arrow
from .validations import PasswordHistoryViaUser, DomainViaUser, AccessHistoryViaUser from .validations import PasswordHistoryViaUser, DomainViaUser, AccessHistoryViaUser
from .mongo_database import MongoQuery from .mongo_database import MongoQuery
@ -31,6 +33,7 @@ class MongoQueryIdentity:
table_name=self.mongo_collection_name, database_name="mongo_database" table_name=self.mongo_collection_name, database_name="mongo_database"
) )
def create_domain_via_user(self, payload: DomainViaUser): def create_domain_via_user(self, payload: DomainViaUser):
self.use_collection("Domain") self.use_collection("Domain")
return self.mongo_engine.insert( return self.mongo_engine.insert(
@ -69,15 +72,14 @@ class MongoQueryIdentity:
"password_history": [], "password_history": [],
} }
) )
password_history_item = self.mongo_engine.get_one( password_history_item = self.mongo_engine.get_one(
match=payload.user_uu_id, field="user_uu_id" match=payload.user_uu_id, field="user_uu_id"
) )
password_history_list = password_history_item.get("password_history", []) password_history_list = password_history_item.get("password_history", [])
hashed_password = payload.password_add.get("password") hashed_password = payload.password_add.get("password")
for password_in_history in password_history_list: for password_in_history in password_history_list:
if password_in_history.get("password") == str(hashed_password): if str(password_in_history.get("password")) == str(hashed_password):
print('Password already used. Please enter a new password that you have not used last 3 times.')
raise HTTPException( raise HTTPException(
status_code=400, status_code=400,
detail="Password already used. Please enter a new password that you have not used last 3 times.", detail="Password already used. Please enter a new password that you have not used last 3 times.",
@ -87,8 +89,7 @@ class MongoQueryIdentity:
password_history_list.pop(0) password_history_list.pop(0)
password_history_list.append(payload.password_add) password_history_list.append(payload.password_add)
self.mongo_engine.update(
return self.mongo_engine.update(
match=payload.user_uu_id, match=payload.user_uu_id,
payload={ payload={
"password_history": password_history_list, "password_history": password_history_list,
@ -97,6 +98,7 @@ class MongoQueryIdentity:
}, },
field="user_uu_id", field="user_uu_id",
) )
return True
def get_password_history_via_user(self, user_uu_id): def get_password_history_via_user(self, user_uu_id):
self.use_collection("PasswordHistory") self.use_collection("PasswordHistory")

View File

@ -61,6 +61,7 @@ class MongoQuery:
return self.table.insert_many(documents=[payload]) return self.table.insert_many(documents=[payload])
def update(self, match, payload, field: str = "id"): def update(self, match, payload, field: str = "id"):
print('update', match, payload, field)
if field == "id": if field == "id":
filter_ = {"_id": ObjectId(match)} filter_ = {"_id": ObjectId(match)}
self.table.update_one(filter=filter_, update={"$set": payload}) self.table.update_one(filter=filter_, update={"$set": payload})

View File

@ -24,13 +24,14 @@ class FilterAttributes:
FilterModel = ListOptions FilterModel = ListOptions
def flush(self): def flush(self):
from fastapi import status
"""Flush the current session.""" """Flush the current session."""
try: try:
self.__session__.add(self) self.__session__.add(self)
self.__session__.flush() self.__session__.flush()
except SQLAlchemyError as e: except SQLAlchemyError as e:
self.raise_http_exception( self.raise_http_exception(
status_code="HTTP_304_NOT_MODIFIED", status_code="HTTP_400_BAD_REQUEST",
error_case=e.__class__.__name__, error_case=e.__class__.__name__,
data={}, data={},
message=str(e.__context__).split("\n")[0], message=str(e.__context__).split("\n")[0],
@ -48,7 +49,7 @@ class FilterAttributes:
cls.__session__.commit() cls.__session__.commit()
except SQLAlchemyError as e: except SQLAlchemyError as e:
cls.raise_http_exception( cls.raise_http_exception(
status_code="HTTP_304_NOT_MODIFIED", status_code="HTTP_400_BAD_REQUEST",
error_case=e.__class__.__name__, error_case=e.__class__.__name__,
data={}, data={},
message=str(e.__context__).split("\n")[0], message=str(e.__context__).split("\n")[0],
@ -92,10 +93,11 @@ class FilterAttributes:
@classmethod @classmethod
def add_new_arg_to_args(cls, args_list, argument, value): def add_new_arg_to_args(cls, args_list, argument, value):
new_arg_list = list( new_arg_list = list(set(
args_ for args_ in list(args_list) if isinstance(args_, SQLColumnExpression) args_ for args_ in list(args_list) if isinstance(args_, SQLColumnExpression)
) ))
if not any(True for arg in new_arg_list if arg.left.key == argument): arg_left = lambda arg_obj: getattr(getattr(arg_obj, "left", None), 'key', None)
if not any(True for arg in new_arg_list if arg_left(arg_obj=arg) == argument):
new_arg_list.append(value) new_arg_list.append(value)
return tuple(new_arg_list) return tuple(new_arg_list)

View File

@ -89,28 +89,16 @@ services:
depends_on: depends_on:
- postgres_commercial - postgres_commercial
wag_management_test_service: wag_bank_services:
container_name: wag_management_test_service container_name: wag_bank_services
build:
context: .
dockerfile: service_app_test/Dockerfile
networks:
- network_store_services
depends_on:
- wag_management_init_service
mail_service:
container_name: mail_service
restart: on-failure restart: on-failure
build: build:
context: . context: .
dockerfile: service_app_mail/mailService.Dockerfile dockerfile: service_app_banks/mailService.Dockerfile
ports:
- "22222:22222"
networks: networks:
- network_store_services - network_store_services
depends_on: depends_on:
- wag_management_service - postgres_commercial
environment: environment:
- DATABASE_URL=postgresql+psycopg2://berkay_wag_user:berkay_wag_user_password@postgres_commercial:5432/wag_database - DATABASE_URL=postgresql+psycopg2://berkay_wag_user:berkay_wag_user_password@postgres_commercial:5432/wag_database
volumes: volumes:
@ -144,6 +132,16 @@ services:
- GF_USERS_ALLOW_ORG_CREATE=false - GF_USERS_ALLOW_ORG_CREATE=false
volumes: volumes:
- grafana_data:/var/lib/grafana - grafana_data:/var/lib/grafana
# wag_management_test_service:
# container_name: wag_management_test_service
# build:
# context: .
# dockerfile: service_app_test/Dockerfile
# networks:
# - network_store_services
# depends_on:
# - wag_management_init_service
# #
# nginx-proxy-wag: # nginx-proxy-wag:
# container_name: nginx-proxy-wag # container_name: nginx-proxy-wag

View File

@ -7,22 +7,31 @@ from fastapi.responses import JSONResponse
def exception_handler_http(request: Request, exc: HTTPException): def exception_handler_http(request: Request, exc: HTTPException):
print("headers", request.headers) exc_detail = getattr(exc, "detail", None)
detail = loads(exc.detail) try:
return JSONResponse( detail = loads(str(exc_detail))
status_code=exc.status_code, return JSONResponse(
content={ status_code=exc.status_code,
"Data": detail.get("data", {}), content={
"Error": detail.get("error_case", "UNKNOWN"), "Data": detail.get("data", {}),
"Message": detail.get( "Error": detail.get("error_case", "UNKNOWN"),
"message", "An error occurred while processing the request" "Message": detail.get(
), "message", "An error occurred while processing the request"
}, ),
) },
)
except Exception as e:
err = e
return JSONResponse(
status_code=exc.status_code,
content={
"detail":str(exc_detail),
"mesasage": f"{e}"
},
)
def exception_handler_exception(request: Request, exc: Exception): def exception_handler_exception(request: Request, exc: Exception):
print("headers", request.headers)
return JSONResponse( return JSONResponse(
status_code=status.HTTP_417_EXPECTATION_FAILED, status_code=status.HTTP_417_EXPECTATION_FAILED,
content={"message": exc.__str__()}, content={"message": exc.__str__()},

View File

@ -2,8 +2,8 @@ import json
from time import perf_counter from time import perf_counter
from api_configs import Config from api_configs import Config
from starlette import status from fastapi import status
from starlette.exceptions import HTTPException from fastapi.exceptions import HTTPException
from starlette.middleware.base import BaseHTTPMiddleware from starlette.middleware.base import BaseHTTPMiddleware

View File

@ -15,60 +15,60 @@ internal_route = APIRouter(prefix="/internal", tags=["Internal"])
internal_route.include_router(internal_route, include_in_schema=False) internal_route.include_router(internal_route, include_in_schema=False)
class ApiReceive(BaseModel): # class ApiReceive(BaseModel):
data: str # data: str
#
#
class BankReceive(BaseModel): # class BankReceive(BaseModel):
import_file_name: str # import_file_name: str
iban: str # iban: str
bank_date: str # bank_date: str
channel_branch: str # channel_branch: str
currency: typing.Optional[str] = "TL" # currency: typing.Optional[str] = "TL"
currency_value: float # currency_value: float
bank_balance: float # bank_balance: float
additional_balance: float # additional_balance: float
process_name: str # process_name: str
process_type: str # process_type: str
process_comment: str # process_comment: str
bank_reference_code: str # bank_reference_code: str
# #
#
@internal_route.post( # @internal_route.post(
path="/isbank/retreive", # path="/isbank/retreive",
summary="Receive isbank xls service from mail reader service", # summary="Receive isbank xls service from mail reader service",
) # )
def is_bank_retrieve_account_records(request: Request, bank_data: ApiReceive): # def is_bank_retrieve_account_records(request: Request, bank_data: ApiReceive):
from databases import AccountRecords # from databases import AccountRecords
#
data_dict = bank_data.model_dump() # data_dict = bank_data.model_dump()
data_bulk = json.loads(zlib.decompress(b64decode(data_dict["data"]))) # data_bulk = json.loads(zlib.decompress(b64decode(data_dict["data"])))
print("data_bulk", data_bulk) # print("data_bulk", data_bulk)
new_record_list = [] # new_record_list = []
for data_keys in data_bulk: # data_bulk is a dict # for data_keys in data_bulk: # data_bulk is a dict
for data_dict in data_bulk[data_keys]: # data_bulk[data_keys] is a list # for data_dict in data_bulk[data_keys]: # data_bulk[data_keys] is a list
data_dict["bank_balance"] = data_dict.pop("balance") # data_dict["bank_balance"] = data_dict.pop("balance")
data_dict["import_file_name"] = str(data_keys) # data_dict["import_file_name"] = str(data_keys)
print("data_dict before pyd", data_dict) # print("data_dict before pyd", data_dict)
data_dict = BankReceive(**data_dict).model_dump() # data_dict = BankReceive(**data_dict).model_dump()
print("data_dict after pyd", data_dict) # print("data_dict after pyd", data_dict)
if new_account_record := AccountRecords.find_or_create(**data_dict): # if new_account_record := AccountRecords.find_or_create(**data_dict):
print("new_account_record.is_found", new_account_record.is_found) # print("new_account_record.is_found", new_account_record.is_found)
if not new_account_record.is_found: # if not new_account_record.is_found:
new_record_list.append(new_account_record.get_dict()) # new_record_list.append(new_account_record.get_dict())
if new_record_list: # if new_record_list:
return JSONResponse( # return JSONResponse(
content={ # content={
"completed": True, # "completed": True,
"message": "Create Bank Record", # "message": "Create Bank Record",
"data": new_record_list, # "data": new_record_list,
}, # },
status_code=status.HTTP_200_OK, # status_code=status.HTTP_200_OK,
) # )
return JSONResponse( # return JSONResponse(
content={ # content={
"completed": False, # "completed": False,
"message": "Record already exist or can not be created", # "message": "Record already exist or can not be created",
}, # },
status_code=status.HTTP_406_NOT_ACCEPTABLE, # status_code=status.HTTP_406_NOT_ACCEPTABLE,
) # )

View File

@ -47,11 +47,10 @@ def authentication_select_company_or_occupant_type(
@login_route.post(path="/login", summary="Login user with domain and password") @login_route.post(path="/login", summary="Login user with domain and password")
def authentication_login_with_domain_and_creds(request: Request, data: Login): def authentication_login_with_domain_and_creds(request: Request, data: Login):
active_function = getattr( active_function = getattr(
AuthenticationLoginEventMethod, "authentication_login_with_domain_and_creds" AuthenticationLoginEventMethod, "authentication_login_with_domain_and_creds"
) )
return active_function(data=data, request=request, token_dict=None) return active_function(request=request, data=data)
@login_route.get(path="/valid", summary="Check access token is valid") @login_route.get(path="/valid", summary="Check access token is valid")

View File

@ -0,0 +1,2 @@
0 8 * * * /usr/local/bin/python /service_app_banks/app_mail_sender.py >> /var/log/cron.log 2>&1
*/15 * * * * /usr/local/bin/python /service_app_banks/isbank/main_single_thread.py >> /var/log/cron.log 2>&1

View File

View File

@ -0,0 +1,56 @@
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELİFCAN DEMİRTAŞ*0062*CEP-EFTEMRİ-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJİSAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELİFCAN DEMİRTAŞ*0062*CEP-EFTEMRİ-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLÜL AİDAT DAİRE 12*GİZEM ÇEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELİFCAN DEMİRTAŞ*0062*CEP-EFTEMRİ-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJİSAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'İşCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-01 22:52:21', 'channel_branch': 'IsCep', 'currency_value': 1500.0, 'balance': 3091.2, 'additional_balance': 0, 'process_name': '0S', 'process_type': 'Havale', 'process_comment': 'EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939', 'bank_reference_code': '14245009333320240901225221518'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-09-02 08:37:07', 'channel_branch': 'Sistem', 'currency_value': 1500.0, 'balance': 4591.2, 'additional_balance': 0, 'process_name': 'E9', 'process_type': 'EFT', 'process_comment': 'ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640', 'bank_reference_code': '14245009333320240902083707644'}
INFO:__main__:Insert Dict: {'iban': 'TR400006400000142450093333', 'bank_date': '2024-08-29 09:28:53', 'channel_branch': 'Sistem', 'currency_value': -166.5, 'balance': 1591.2, 'additional_balance': 0, 'process_name': 'PH', 'process_type': 'Fatura', 'process_comment': '1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717', 'bank_reference_code': '14245009333320240829092853445'}

View File

@ -0,0 +1,44 @@
{
"2024-09-02 16:34:33.729620": {
"42450093333_20240902_09033677_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-01 22:52:21",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 3091.2,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939",
"bank_reference_code": "14245009333320240901225221518"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 08:37:07",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 4591.2,
"additional_balance": 0,
"process_name": "E9",
"process_type": "EFT",
"process_comment": "ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640",
"bank_reference_code": "14245009333320240902083707644"
}
],
"42450093333_20240830_09025501_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-29 09:28:53",
"channel_branch": "Sistem",
"currency_value": -166.5,
"balance": 1591.2,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717",
"bank_reference_code": "14245009333320240829092853445"
}
]
}
}

View File

@ -0,0 +1,44 @@
{
"2024-09-02 16:35:01.072082": {
"42450093333_20240902_09033677_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-01 22:52:21",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 3091.2,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939",
"bank_reference_code": "14245009333320240901225221518"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 08:37:07",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 4591.2,
"additional_balance": 0,
"process_name": "E9",
"process_type": "EFT",
"process_comment": "ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640",
"bank_reference_code": "14245009333320240902083707644"
}
],
"42450093333_20240830_09025501_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-29 09:28:53",
"channel_branch": "Sistem",
"currency_value": -166.5,
"balance": 1591.2,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717",
"bank_reference_code": "14245009333320240829092853445"
}
]
}
}

View File

@ -0,0 +1,3 @@
{
"2024-09-06 10:49:57.704520": {}
}

View File

@ -0,0 +1,3 @@
{
"2024-09-06 10:50:28.445122": {}
}

View File

@ -0,0 +1,3 @@
{
"2024-09-06 10:50:59.655512": {}
}

View File

@ -0,0 +1,30 @@
{
"2024-09-06 15:22:42.061574": {
"42450093333_20240906_09024972_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-09-06 15:23:34.636513": {
"42450093333_20240906_09024972_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-09-06 15:27:21.036843": {
"42450093333_20240906_09024972_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-09-06 15:29:53.347874": {
"42450093333_20240906_09024972_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-09-06 15:32:03.591131": {
"42450093333_20240906_09024972_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-09-06 15:39:59.299158": {
"42450093333_20240906_09024972_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
}
]
}
}

View File

@ -0,0 +1,872 @@
{
"2024-09-07 14:17:38.860110": {
"42450093333_20240906_09024972_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
}
],
"42450093333_20240907_14545038_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-03 08:02:48",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 8586.77,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "GONUL ARISOY- AIDAT*GONUL ARISOY*H2409510257244",
"bank_reference_code": "14245009333320240903080248280"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 14:10:44",
"channel_branch": "Internet",
"currency_value": -4.43,
"balance": 7086.77,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "UCRET H2409506719897 400,00 TRY UZ.",
"bank_reference_code": "14245009333320240902141044847"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 14:10:44",
"channel_branch": "Internet",
"currency_value": -400.0,
"balance": 7091.2,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "HUSEYIN OZCAN*TR100001000840498883965016*3 ve 4 daireler su hatti*1752917929 H2409506719897*FAST",
"bank_reference_code": "14245009333320240902141044846"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 14:10:07",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 7491.2,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "DAMLA GORMEZOGLU*0099*6 nolu daire eylul 24 ayi aidati*24163547299*FAST",
"bank_reference_code": "14245009333320240902141007865"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 10:32:07",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 5991.2,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2 nolu daire EYLUL 2024 aidat*SONGUL VAR*H2409504972565",
"bank_reference_code": "14245009333320240902103207352"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 08:37:07",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 4591.2,
"additional_balance": 0,
"process_name": "E9",
"process_type": "EFT",
"process_comment": "ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640",
"bank_reference_code": "14245009333320240902083707644"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-01 22:52:21",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 3091.2,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939",
"bank_reference_code": "14245009333320240901225221518"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-29 09:28:53",
"channel_branch": "Sistem",
"currency_value": -166.5,
"balance": 1591.2,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717",
"bank_reference_code": "14245009333320240829092853445"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-27 10:47:50",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 1757.7,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "MUSTAFA EDEPLI 11/11 AGUSTOS AIDAT*ALI IHSAN EDEPLI*H2408484021293",
"bank_reference_code": "14245009333320240827104750517"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-20 13:53:18",
"channel_branch": "Sube:4245",
"currency_value": -8000.0,
"balance": 257.7,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para \u00c7ekme",
"process_comment": "tadilat bedeli",
"bank_reference_code": "14245009333320240820135318371"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-20 13:38:32",
"channel_branch": "Sube:4245",
"currency_value": 585.0,
"balance": 8257.7,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "daire 1 onarim bedeli*MUBERRA BALTACI*H2408457257138",
"bank_reference_code": "14245009333320240820133832143"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-20 13:32:42",
"channel_branch": "Sube:4245",
"currency_value": 3000.0,
"balance": 7672.7,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "1 nolu daire temmuz ve agustos ayi aidatlari*MUBERRA BALTACI*H2408457223540",
"bank_reference_code": "14245009333320240820133242379"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-19 19:30:35",
"channel_branch": "Sistem",
"currency_value": -733.3,
"balance": 4672.7,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "0237990 /A.S.K.I /FATURA NO:02379902408 /K:00092",
"bank_reference_code": "14245009333320240819193035910"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-19 15:18:03",
"channel_branch": "POS",
"currency_value": -730.0,
"balance": 5406.0,
"additional_balance": 0,
"process_name": "DU",
"process_type": "POS",
"process_comment": "TAHSIN HAYRULLAHOGLU TANSANKARA 0412",
"bank_reference_code": "14245009333320240819151803963"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-19 11:46:21",
"channel_branch": "POS",
"currency_value": -72.5,
"balance": 6136.0,
"additional_balance": 0,
"process_name": "DU",
"process_type": "POS",
"process_comment": "P946 - SELIMIYE / CANKA ANKARA 0412",
"bank_reference_code": "14245009333320240819114621375"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-17 07:13:23",
"channel_branch": "Internet",
"currency_value": 585.0,
"balance": 6208.5,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "TADILAT BEDELI MEHMET KARATAY*MEHMET KARATAY*H2408445415394",
"bank_reference_code": "14245009333320240817071323120"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-17 07:09:43",
"channel_branch": "Internet",
"currency_value": 750.0,
"balance": 5623.5,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AIDAT BEDELI*MEHMET KARATAY*H2408445413677",
"bank_reference_code": "14245009333320240817070943651"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-15 10:40:16",
"channel_branch": "IsCep",
"currency_value": 100.0,
"balance": 4873.5,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AGUSTOS 2024 AIDATIN 1500 UN EKSIK 100 TL SI*HASAN CIHAN SENKUCUK*H2408435332462",
"bank_reference_code": "14245009333320240815104016418"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-15 00:31:04",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 4773.5,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AGUSTOS 2024 AIDAT*HASAN CIHAN SENKUCUK*H2408432170794",
"bank_reference_code": "14245009333320240815003104080"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-14 08:58:05",
"channel_branch": "Internet",
"currency_value": -15000.0,
"balance": 3373.5,
"additional_balance": 0,
"process_name": "H7",
"process_type": "Hesap A\u00e7ma",
"process_comment": "HESAP ACMA ISLEMI 4245:0093333 -> 4245:0548927 4245/0548927 H",
"bank_reference_code": "14245009333320240814085805393"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-14 07:24:21",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 18373.5,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Osman Kilinc*0111*osman kilinc - 2024 - agustos*1941534391*FAST",
"bank_reference_code": "14245009333320240814072421352"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-08 14:15:40",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 16873.5,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Ali Can Ispir*0111*daire 3 aidat bedeli 7.ay*1925051221*FAST",
"bank_reference_code": "14245009333320240808141540566"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-06 08:31:12",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 15373.5,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000238* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240806083112140"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-06 08:31:12",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 15382.36,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000238",
"bank_reference_code": "14245009333320240806083112139"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-05 08:06:38",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 20132.36,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "GONUL ARISOY- AIDAT*GONUL ARISOY*H2408388032325",
"bank_reference_code": "14245009333320240805080638825"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-01 17:52:41",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 18632.36,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "ELIFCAN DEMIRTAS*0062**3868000309*FAST",
"bank_reference_code": "14245009333320240801175241707"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-01 16:53:58",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 17132.36,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "NO12 AGUSTOS AIDAT*GIZEM CEKER*H2408375886958",
"bank_reference_code": "14245009333320240801165358883"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-01 10:39:10",
"channel_branch": "IsCep",
"currency_value": 585.0,
"balance": 15632.36,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2 nolu daire - TEMMUZ 2024 TADILAT*SONGUL VAR*H2408373383590",
"bank_reference_code": "14245009333320240801103910922"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-01 10:38:11",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 15047.36,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2 nolu daire Agustos 2024 aidat*SONGUL VAR*H2408373375228",
"bank_reference_code": "14245009333320240801103811349"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-01 09:13:38",
"channel_branch": "Internet",
"currency_value": 585.0,
"balance": 13647.36,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "Agustos ayi Onarim Bedeli*GULSER MAY*H2408372827139",
"bank_reference_code": "14245009333320240801091338907"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-31 12:30:54",
"channel_branch": "Sistem",
"currency_value": 585.0,
"balance": 13062.36,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Irem Yuksekol*0111*Temmuz 2024 tadilat-12 Nolu daire*1898651005*FAST",
"bank_reference_code": "14245009333320240731123054181"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-29 09:21:48",
"channel_branch": "Sistem",
"currency_value": -165.1,
"balance": 12477.36,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TQ2024000449710/K:00717",
"bank_reference_code": "14245009333320240729092148747"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-29 08:01:41",
"channel_branch": "Sistem",
"currency_value": 2085.0,
"balance": 12642.46,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "ALI IHSAN EDEPLI*0111*Mustafa edepli 11/11 tadilat bedeli+aidat bedeli*1892199303*FAST",
"bank_reference_code": "14245009333320240729080141640"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-25 11:00:54",
"channel_branch": "Sistem",
"currency_value": 2085.0,
"balance": 10557.46,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "DAMLA GORMEZOGLU*0099*6 nolu daire temmuz 24 tadilat ve agustos ayi aidati*24153732255*FAST",
"bank_reference_code": "14245009333320240725110054248"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-18 19:21:05",
"channel_branch": "Sistem",
"currency_value": -449.55,
"balance": 8472.46,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "0237990 /A.S.K.I /FATURA NO:02379902407 /K:00092",
"bank_reference_code": "14245009333320240718192105082"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-18 08:02:12",
"channel_branch": "Sistem",
"currency_value": 750.0,
"balance": 8922.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AIDAT BEDELI*MEHMET KARATAY*H2407317033111",
"bank_reference_code": "14245009333320240718080212030"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-16 17:22:22",
"channel_branch": "IsCep",
"currency_value": 585.0,
"balance": 8172.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "TADILAT MASRAFI DAIRE 7*FATIH ERGUN GUCLU*H2407310622684",
"bank_reference_code": "14245009333320240716172222747"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-15 17:18:57",
"channel_branch": "IsCep",
"currency_value": 485.0,
"balance": 7587.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "TEMMUZ 2024 TADILAT*GONUL ARISOY*H2407304543052",
"bank_reference_code": "14245009333320240715171857144"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-15 11:52:59",
"channel_branch": "Internet",
"currency_value": -0.11,
"balance": 7102.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "BSMV H2407302727984 2,11 TRY UZ.",
"bank_reference_code": "14245009333320240715115259819"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-15 11:52:59",
"channel_branch": "Internet",
"currency_value": -2.11,
"balance": 7102.12,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "UCRET H2407302727984 500,00 TRY UZ.",
"bank_reference_code": "14245009333320240715115259818"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-15 11:52:59",
"channel_branch": "Internet",
"currency_value": -500.0,
"balance": 7104.23,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "REMZI SU*TR470006400000142450283618*GUNES APARTMANI YONETICILIGI tarafindan aktarilan*H2407302727984",
"bank_reference_code": "14245009333320240715115259810"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-15 00:39:58",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 7604.23,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "TEMMUZ 2024 AIDAT ODEMESI*HASAN CIHAN SENKUCUK*H2407300069234",
"bank_reference_code": "14245009333320240715003958104"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-13 10:35:46",
"channel_branch": "POS",
"currency_value": -2400.0,
"balance": 6104.23,
"additional_balance": 0,
"process_name": "DU",
"process_type": "POS",
"process_comment": "SANTIYE TEKNIK ANKARA 0412",
"bank_reference_code": "14245009333320240713103546101"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-08 08:31:32",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 8504.23,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0001593* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240708083132283"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-08 08:31:32",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 8513.09,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0001593",
"bank_reference_code": "14245009333320240708083132282"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-07 21:31:04",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 13263.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Osman Kilinc*0111*osman kilinc - 2024 - temmuz*1831074815*FAST",
"bank_reference_code": "14245009333320240707213104726"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-07 12:18:40",
"channel_branch": "Sistem",
"currency_value": 1300.0,
"balance": 11763.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Ali Can Ispir*0111*daire 3 aidat bedeli 6.ay*1829968725*FAST",
"bank_reference_code": "14245009333320240707121840995"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-05 15:34:56",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 10463.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "DAMLA GORMEZOGLU*0099*6 nolu daire temmuz ayi aidati*24149378177*FAST",
"bank_reference_code": "14245009333320240705153456312"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-03 08:02:55",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 8963.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "GONUL ARISOY- AIDAT*GONUL ARISOY*H2407250615633",
"bank_reference_code": "14245009333320240703080255165"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-02 15:49:03",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 7463.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "TEMMUZ AIDAT DAIRE12*GIZEM CEKER*H2407248547664",
"bank_reference_code": "14245009333320240702154903303"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-02 11:07:44",
"channel_branch": "Internet",
"currency_value": -20000.0,
"balance": 5963.09,
"additional_balance": 0,
"process_name": "H7",
"process_type": "Hesap A\u00e7ma",
"process_comment": "HESAP ACMA ISLEMI 4245:0093333 -> 4245:0543716 4245/0543716 H",
"bank_reference_code": "14245009333320240702110744387"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-01 14:45:08",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 25963.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2 NOLU DAIRE TEMMUZ 2024 AIDAT*SONGUL VAR*H2407242854516",
"bank_reference_code": "14245009333320240701144508865"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-01 12:18:12",
"channel_branch": "Sistem",
"currency_value": 100.0,
"balance": 24563.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "ELIFCAN DEMIRTAS*0062**7646000159*FAST",
"bank_reference_code": "14245009333320240701121812130"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-01 12:17:40",
"channel_branch": "Sistem",
"currency_value": 1400.0,
"balance": 24463.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "ELIFCAN DEMIRTAS*0062**3918000174*FAST",
"bank_reference_code": "14245009333320240701121740020"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-28 12:50:47",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 23063.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "MUSTAFA EDEPLI NO.11/11 HAZIRAN AIDAT BEDELI*ALI IHSAN EDEPLI*H2406230847163",
"bank_reference_code": "14245009333320240628125047774"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-24 19:40:19",
"channel_branch": "Sistem",
"currency_value": -82.6,
"balance": 21663.09,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "0237990 /A.S.K.I /FATURA NO:02379902406 /K:00092",
"bank_reference_code": "14245009333320240624194019155"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-24 07:53:46",
"channel_branch": "Sistem",
"currency_value": -93.4,
"balance": 21745.69,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TN2024000377990/K:00717",
"bank_reference_code": "14245009333320240624075346284"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-18 17:55:03",
"channel_branch": "Sistem",
"currency_value": 1400.0,
"balance": 21839.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Osman Kilinc*0111*osman kilinc - 2024 - haziran*1778380427*FAST",
"bank_reference_code": "14245009333320240618175503055"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-17 08:06:10",
"channel_branch": "Internet",
"currency_value": 700.0,
"balance": 20439.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AIDAT BEDELI*MEHMET KARATAY*H2406191357946",
"bank_reference_code": "14245009333320240617080610369"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-15 09:02:25",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 19739.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "HAZIRAN 2024 GUNES APT AIDAT*HASAN CIHAN SENKUCUK*H2406183771923",
"bank_reference_code": "14245009333320240615090225124"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-14 08:01:37",
"channel_branch": "Sistem",
"currency_value": 1300.0,
"balance": 18239.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "muberra baltaci daire 1 yakit bedeli*MUBERRA BALTACI*H2406175186422",
"bank_reference_code": "14245009333320240614080137543"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-13 13:37:25",
"channel_branch": "Sube:4245",
"currency_value": -750.0,
"balance": 16939.09,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para \u00c7ekme",
"process_comment": "cam degisimi",
"bank_reference_code": "14245009333320240613133725088"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-12 10:45:06",
"channel_branch": "Sube:4245",
"currency_value": 987.35,
"balance": 17689.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "malzeme iadesi*MEHMET KARATAY*H2406164785583",
"bank_reference_code": "14245009333320240612104506265"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-12 10:41:48",
"channel_branch": "Sube:4245",
"currency_value": -3000.0,
"balance": 16701.74,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para \u00c7ekme",
"process_comment": "depo temizligi icin odenen",
"bank_reference_code": "14245009333320240612104148613"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-10 13:38:34",
"channel_branch": "Sube:4245",
"currency_value": -200.0,
"balance": 19701.74,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para \u00c7ekme",
"process_comment": "cam icin odenen",
"bank_reference_code": "14245009333320240610133834619"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-07 18:35:21",
"channel_branch": "Sube:4245",
"currency_value": 200.0,
"balance": 19901.74,
"additional_balance": 0,
"process_name": "KC",
"process_type": "Para Yat\u0131rma",
"process_comment": "9 gise 18 fs eksik odenen tutara istinaden",
"bank_reference_code": "14245009333320240607183521066"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-07 11:09:18",
"channel_branch": "Sube:4245",
"currency_value": 1580.0,
"balance": 19701.74,
"additional_balance": 0,
"process_name": "KC",
"process_type": "Para Yat\u0131rma",
"process_comment": "hurdalar",
"bank_reference_code": "14245009333320240607110918003"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-07 11:08:37",
"channel_branch": "Sube:4245",
"currency_value": -1700.0,
"balance": 18121.74,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para \u00c7ekme",
"process_comment": "tamirat 8",
"bank_reference_code": "14245009333320240607110837583"
}
]
}
}

View File

@ -0,0 +1,872 @@
{
"2024-09-09 09:32:08.222000": {
"42450093333_20240907_14545038_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-03 08:02:48",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 8586.77,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "GONUL ARISOY- AIDAT*GONUL ARISOY*H2409510257244",
"bank_reference_code": "14245009333320240903080248280"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 14:10:44",
"channel_branch": "Internet",
"currency_value": -4.43,
"balance": 7086.77,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "UCRET H2409506719897 400,00 TRY UZ.",
"bank_reference_code": "14245009333320240902141044847"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 14:10:44",
"channel_branch": "Internet",
"currency_value": -400.0,
"balance": 7091.2,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "HUSEYIN OZCAN*TR100001000840498883965016*3 ve 4 daireler su hatti*1752917929 H2409506719897*FAST",
"bank_reference_code": "14245009333320240902141044846"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 14:10:07",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 7491.2,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "DAMLA GORMEZOGLU*0099*6 nolu daire eylul 24 ayi aidati*24163547299*FAST",
"bank_reference_code": "14245009333320240902141007865"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 10:32:07",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 5991.2,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2 nolu daire EYLUL 2024 aidat*SONGUL VAR*H2409504972565",
"bank_reference_code": "14245009333320240902103207352"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 08:37:07",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 4591.2,
"additional_balance": 0,
"process_name": "E9",
"process_type": "EFT",
"process_comment": "ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640",
"bank_reference_code": "14245009333320240902083707644"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-01 22:52:21",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 3091.2,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939",
"bank_reference_code": "14245009333320240901225221518"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-29 09:28:53",
"channel_branch": "Sistem",
"currency_value": -166.5,
"balance": 1591.2,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717",
"bank_reference_code": "14245009333320240829092853445"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-27 10:47:50",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 1757.7,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "MUSTAFA EDEPLI 11/11 AGUSTOS AIDAT*ALI IHSAN EDEPLI*H2408484021293",
"bank_reference_code": "14245009333320240827104750517"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-20 13:53:18",
"channel_branch": "Sube:4245",
"currency_value": -8000.0,
"balance": 257.7,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para \u00c7ekme",
"process_comment": "tadilat bedeli",
"bank_reference_code": "14245009333320240820135318371"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-20 13:38:32",
"channel_branch": "Sube:4245",
"currency_value": 585.0,
"balance": 8257.7,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "daire 1 onarim bedeli*MUBERRA BALTACI*H2408457257138",
"bank_reference_code": "14245009333320240820133832143"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-20 13:32:42",
"channel_branch": "Sube:4245",
"currency_value": 3000.0,
"balance": 7672.7,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "1 nolu daire temmuz ve agustos ayi aidatlari*MUBERRA BALTACI*H2408457223540",
"bank_reference_code": "14245009333320240820133242379"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-19 19:30:35",
"channel_branch": "Sistem",
"currency_value": -733.3,
"balance": 4672.7,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "0237990 /A.S.K.I /FATURA NO:02379902408 /K:00092",
"bank_reference_code": "14245009333320240819193035910"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-19 15:18:03",
"channel_branch": "POS",
"currency_value": -730.0,
"balance": 5406.0,
"additional_balance": 0,
"process_name": "DU",
"process_type": "POS",
"process_comment": "TAHSIN HAYRULLAHOGLU TANSANKARA 0412",
"bank_reference_code": "14245009333320240819151803963"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-19 11:46:21",
"channel_branch": "POS",
"currency_value": -72.5,
"balance": 6136.0,
"additional_balance": 0,
"process_name": "DU",
"process_type": "POS",
"process_comment": "P946 - SELIMIYE / CANKA ANKARA 0412",
"bank_reference_code": "14245009333320240819114621375"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-17 07:13:23",
"channel_branch": "Internet",
"currency_value": 585.0,
"balance": 6208.5,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "TADILAT BEDELI MEHMET KARATAY*MEHMET KARATAY*H2408445415394",
"bank_reference_code": "14245009333320240817071323120"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-17 07:09:43",
"channel_branch": "Internet",
"currency_value": 750.0,
"balance": 5623.5,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AIDAT BEDELI*MEHMET KARATAY*H2408445413677",
"bank_reference_code": "14245009333320240817070943651"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-15 10:40:16",
"channel_branch": "IsCep",
"currency_value": 100.0,
"balance": 4873.5,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AGUSTOS 2024 AIDATIN 1500 UN EKSIK 100 TL SI*HASAN CIHAN SENKUCUK*H2408435332462",
"bank_reference_code": "14245009333320240815104016418"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-15 00:31:04",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 4773.5,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AGUSTOS 2024 AIDAT*HASAN CIHAN SENKUCUK*H2408432170794",
"bank_reference_code": "14245009333320240815003104080"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-14 08:58:05",
"channel_branch": "Internet",
"currency_value": -15000.0,
"balance": 3373.5,
"additional_balance": 0,
"process_name": "H7",
"process_type": "Hesap A\u00e7ma",
"process_comment": "HESAP ACMA ISLEMI 4245:0093333 -> 4245:0548927 4245/0548927 H",
"bank_reference_code": "14245009333320240814085805393"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-14 07:24:21",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 18373.5,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Osman Kilinc*0111*osman kilinc - 2024 - agustos*1941534391*FAST",
"bank_reference_code": "14245009333320240814072421352"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-08 14:15:40",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 16873.5,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Ali Can Ispir*0111*daire 3 aidat bedeli 7.ay*1925051221*FAST",
"bank_reference_code": "14245009333320240808141540566"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-06 08:31:12",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 15373.5,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000238* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240806083112140"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-06 08:31:12",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 15382.36,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000238",
"bank_reference_code": "14245009333320240806083112139"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-05 08:06:38",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 20132.36,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "GONUL ARISOY- AIDAT*GONUL ARISOY*H2408388032325",
"bank_reference_code": "14245009333320240805080638825"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-01 17:52:41",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 18632.36,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "ELIFCAN DEMIRTAS*0062**3868000309*FAST",
"bank_reference_code": "14245009333320240801175241707"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-01 16:53:58",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 17132.36,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "NO12 AGUSTOS AIDAT*GIZEM CEKER*H2408375886958",
"bank_reference_code": "14245009333320240801165358883"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-01 10:39:10",
"channel_branch": "IsCep",
"currency_value": 585.0,
"balance": 15632.36,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2 nolu daire - TEMMUZ 2024 TADILAT*SONGUL VAR*H2408373383590",
"bank_reference_code": "14245009333320240801103910922"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-01 10:38:11",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 15047.36,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2 nolu daire Agustos 2024 aidat*SONGUL VAR*H2408373375228",
"bank_reference_code": "14245009333320240801103811349"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-01 09:13:38",
"channel_branch": "Internet",
"currency_value": 585.0,
"balance": 13647.36,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "Agustos ayi Onarim Bedeli*GULSER MAY*H2408372827139",
"bank_reference_code": "14245009333320240801091338907"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-31 12:30:54",
"channel_branch": "Sistem",
"currency_value": 585.0,
"balance": 13062.36,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Irem Yuksekol*0111*Temmuz 2024 tadilat-12 Nolu daire*1898651005*FAST",
"bank_reference_code": "14245009333320240731123054181"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-29 09:21:48",
"channel_branch": "Sistem",
"currency_value": -165.1,
"balance": 12477.36,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TQ2024000449710/K:00717",
"bank_reference_code": "14245009333320240729092148747"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-29 08:01:41",
"channel_branch": "Sistem",
"currency_value": 2085.0,
"balance": 12642.46,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "ALI IHSAN EDEPLI*0111*Mustafa edepli 11/11 tadilat bedeli+aidat bedeli*1892199303*FAST",
"bank_reference_code": "14245009333320240729080141640"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-25 11:00:54",
"channel_branch": "Sistem",
"currency_value": 2085.0,
"balance": 10557.46,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "DAMLA GORMEZOGLU*0099*6 nolu daire temmuz 24 tadilat ve agustos ayi aidati*24153732255*FAST",
"bank_reference_code": "14245009333320240725110054248"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-18 19:21:05",
"channel_branch": "Sistem",
"currency_value": -449.55,
"balance": 8472.46,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "0237990 /A.S.K.I /FATURA NO:02379902407 /K:00092",
"bank_reference_code": "14245009333320240718192105082"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-18 08:02:12",
"channel_branch": "Sistem",
"currency_value": 750.0,
"balance": 8922.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AIDAT BEDELI*MEHMET KARATAY*H2407317033111",
"bank_reference_code": "14245009333320240718080212030"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-16 17:22:22",
"channel_branch": "IsCep",
"currency_value": 585.0,
"balance": 8172.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "TADILAT MASRAFI DAIRE 7*FATIH ERGUN GUCLU*H2407310622684",
"bank_reference_code": "14245009333320240716172222747"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-15 17:18:57",
"channel_branch": "IsCep",
"currency_value": 485.0,
"balance": 7587.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "TEMMUZ 2024 TADILAT*GONUL ARISOY*H2407304543052",
"bank_reference_code": "14245009333320240715171857144"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-15 11:52:59",
"channel_branch": "Internet",
"currency_value": -0.11,
"balance": 7102.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "BSMV H2407302727984 2,11 TRY UZ.",
"bank_reference_code": "14245009333320240715115259819"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-15 11:52:59",
"channel_branch": "Internet",
"currency_value": -2.11,
"balance": 7102.12,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "UCRET H2407302727984 500,00 TRY UZ.",
"bank_reference_code": "14245009333320240715115259818"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-15 11:52:59",
"channel_branch": "Internet",
"currency_value": -500.0,
"balance": 7104.23,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "REMZI SU*TR470006400000142450283618*GUNES APARTMANI YONETICILIGI tarafindan aktarilan*H2407302727984",
"bank_reference_code": "14245009333320240715115259810"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-15 00:39:58",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 7604.23,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "TEMMUZ 2024 AIDAT ODEMESI*HASAN CIHAN SENKUCUK*H2407300069234",
"bank_reference_code": "14245009333320240715003958104"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-13 10:35:46",
"channel_branch": "POS",
"currency_value": -2400.0,
"balance": 6104.23,
"additional_balance": 0,
"process_name": "DU",
"process_type": "POS",
"process_comment": "SANTIYE TEKNIK ANKARA 0412",
"bank_reference_code": "14245009333320240713103546101"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-08 08:31:32",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 8504.23,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0001593* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240708083132283"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-08 08:31:32",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 8513.09,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0001593",
"bank_reference_code": "14245009333320240708083132282"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-07 21:31:04",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 13263.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Osman Kilinc*0111*osman kilinc - 2024 - temmuz*1831074815*FAST",
"bank_reference_code": "14245009333320240707213104726"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-07 12:18:40",
"channel_branch": "Sistem",
"currency_value": 1300.0,
"balance": 11763.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Ali Can Ispir*0111*daire 3 aidat bedeli 6.ay*1829968725*FAST",
"bank_reference_code": "14245009333320240707121840995"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-05 15:34:56",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 10463.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "DAMLA GORMEZOGLU*0099*6 nolu daire temmuz ayi aidati*24149378177*FAST",
"bank_reference_code": "14245009333320240705153456312"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-03 08:02:55",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 8963.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "GONUL ARISOY- AIDAT*GONUL ARISOY*H2407250615633",
"bank_reference_code": "14245009333320240703080255165"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-02 15:49:03",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 7463.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "TEMMUZ AIDAT DAIRE12*GIZEM CEKER*H2407248547664",
"bank_reference_code": "14245009333320240702154903303"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-02 11:07:44",
"channel_branch": "Internet",
"currency_value": -20000.0,
"balance": 5963.09,
"additional_balance": 0,
"process_name": "H7",
"process_type": "Hesap A\u00e7ma",
"process_comment": "HESAP ACMA ISLEMI 4245:0093333 -> 4245:0543716 4245/0543716 H",
"bank_reference_code": "14245009333320240702110744387"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-01 14:45:08",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 25963.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2 NOLU DAIRE TEMMUZ 2024 AIDAT*SONGUL VAR*H2407242854516",
"bank_reference_code": "14245009333320240701144508865"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-01 12:18:12",
"channel_branch": "Sistem",
"currency_value": 100.0,
"balance": 24563.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "ELIFCAN DEMIRTAS*0062**7646000159*FAST",
"bank_reference_code": "14245009333320240701121812130"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-07-01 12:17:40",
"channel_branch": "Sistem",
"currency_value": 1400.0,
"balance": 24463.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "ELIFCAN DEMIRTAS*0062**3918000174*FAST",
"bank_reference_code": "14245009333320240701121740020"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-28 12:50:47",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 23063.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "MUSTAFA EDEPLI NO.11/11 HAZIRAN AIDAT BEDELI*ALI IHSAN EDEPLI*H2406230847163",
"bank_reference_code": "14245009333320240628125047774"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-24 19:40:19",
"channel_branch": "Sistem",
"currency_value": -82.6,
"balance": 21663.09,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "0237990 /A.S.K.I /FATURA NO:02379902406 /K:00092",
"bank_reference_code": "14245009333320240624194019155"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-24 07:53:46",
"channel_branch": "Sistem",
"currency_value": -93.4,
"balance": 21745.69,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TN2024000377990/K:00717",
"bank_reference_code": "14245009333320240624075346284"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-18 17:55:03",
"channel_branch": "Sistem",
"currency_value": 1400.0,
"balance": 21839.09,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Osman Kilinc*0111*osman kilinc - 2024 - haziran*1778380427*FAST",
"bank_reference_code": "14245009333320240618175503055"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-17 08:06:10",
"channel_branch": "Internet",
"currency_value": 700.0,
"balance": 20439.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AIDAT BEDELI*MEHMET KARATAY*H2406191357946",
"bank_reference_code": "14245009333320240617080610369"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-15 09:02:25",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 19739.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "HAZIRAN 2024 GUNES APT AIDAT*HASAN CIHAN SENKUCUK*H2406183771923",
"bank_reference_code": "14245009333320240615090225124"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-14 08:01:37",
"channel_branch": "Sistem",
"currency_value": 1300.0,
"balance": 18239.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "muberra baltaci daire 1 yakit bedeli*MUBERRA BALTACI*H2406175186422",
"bank_reference_code": "14245009333320240614080137543"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-13 13:37:25",
"channel_branch": "Sube:4245",
"currency_value": -750.0,
"balance": 16939.09,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para \u00c7ekme",
"process_comment": "cam degisimi",
"bank_reference_code": "14245009333320240613133725088"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-12 10:45:06",
"channel_branch": "Sube:4245",
"currency_value": 987.35,
"balance": 17689.09,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "malzeme iadesi*MEHMET KARATAY*H2406164785583",
"bank_reference_code": "14245009333320240612104506265"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-12 10:41:48",
"channel_branch": "Sube:4245",
"currency_value": -3000.0,
"balance": 16701.74,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para \u00c7ekme",
"process_comment": "depo temizligi icin odenen",
"bank_reference_code": "14245009333320240612104148613"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-10 13:38:34",
"channel_branch": "Sube:4245",
"currency_value": -200.0,
"balance": 19701.74,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para \u00c7ekme",
"process_comment": "cam icin odenen",
"bank_reference_code": "14245009333320240610133834619"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-07 18:35:21",
"channel_branch": "Sube:4245",
"currency_value": 200.0,
"balance": 19901.74,
"additional_balance": 0,
"process_name": "KC",
"process_type": "Para Yat\u0131rma",
"process_comment": "9 gise 18 fs eksik odenen tutara istinaden",
"bank_reference_code": "14245009333320240607183521066"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-07 11:09:18",
"channel_branch": "Sube:4245",
"currency_value": 1580.0,
"balance": 19701.74,
"additional_balance": 0,
"process_name": "KC",
"process_type": "Para Yat\u0131rma",
"process_comment": "hurdalar",
"bank_reference_code": "14245009333320240607110918003"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-06-07 11:08:37",
"channel_branch": "Sube:4245",
"currency_value": -1700.0,
"balance": 18121.74,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para \u00c7ekme",
"process_comment": "tamirat 8",
"bank_reference_code": "14245009333320240607110837583"
}
],
"42450093333_20240906_09024972_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-09-12 06:15:04.645958": {
"42450093333_20240912_09034212_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-11 10:30:18",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 5327.91,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Osman Kilinc*0111*osman kilinc - 2024 - eylul*2031089184*FAST",
"bank_reference_code": "14245009333320240911103018283"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-09-15 06:15:04.688148": {
"42450093333_20240915_09025334_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-15 05:05:30",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 6827.91,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "EYLUL 2024 AIDAT ODEMESI*HASAN CIHAN SENKUCUK*H2409563319368",
"bank_reference_code": "14245009333320240915050530476"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-15 08:02:44",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 8327.91,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "muberra baltaci daire 1 yakit bedeli*MUBERRA BALTACI*H2409563534468",
"bank_reference_code": "14245009333320240915080244956"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-09-17 06:07:28.270648": {
"42450093333_20240917_09022227_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-16 10:28:36",
"channel_branch": "Sube:4245",
"currency_value": -2000.0,
"balance": 6327.91,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para Cekme",
"process_comment": "dogalgaz bakimi icin",
"bank_reference_code": "14245009333320240916102836666"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-09-18 06:12:17.458857": {
"42450093333_20240918_09043112_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-18 08:01:39",
"channel_branch": "Sistem",
"currency_value": 750.0,
"balance": 7077.91,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AIDAT BEDELI*MEHMET KARATAY*H2409579438588",
"bank_reference_code": "14245009333320240918080139063"
}
]
}
}

View File

@ -0,0 +1,246 @@
{
"2024-09-20 12:45:03.792231": {
"42450093333_20240920_15344152_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-20 09:00:18",
"channel_branch": "IsCep",
"currency_value": 10370.0,
"balance": 17447.91,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "EYLUL DAHIL GECMIS DONEM AIDAT BORCU. DAIRE NO 5*CAGLAR CELIK*H2409588422004",
"bank_reference_code": "14245009333320240920090018810"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-18 08:01:39",
"channel_branch": "Sistem",
"currency_value": 750.0,
"balance": 7077.91,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AIDAT BEDELI*MEHMET KARATAY*H2409579438588",
"bank_reference_code": "14245009333320240918080139063"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-16 10:28:36",
"channel_branch": "Sube:4245",
"currency_value": -2000.0,
"balance": 6327.91,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para Cekme",
"process_comment": "dogalgaz bakimi icin",
"bank_reference_code": "14245009333320240916102836666"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-15 08:02:44",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 8327.91,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "muberra baltaci daire 1 yakit bedeli*MUBERRA BALTACI*H2409563534468",
"bank_reference_code": "14245009333320240915080244956"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-15 05:05:30",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 6827.91,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "EYLUL 2024 AIDAT ODEMESI*HASAN CIHAN SENKUCUK*H2409563319368",
"bank_reference_code": "14245009333320240915050530476"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-11 10:30:18",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 5327.91,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Osman Kilinc*0111*osman kilinc - 2024 - eylul*2031089184*FAST",
"bank_reference_code": "14245009333320240911103018283"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3827.91,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000610* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320240906083115290"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-06 08:31:15",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3836.77,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000610",
"bank_reference_code": "14245009333320240906083115289"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-03 08:02:48",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 8586.77,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "GONUL ARISOY- AIDAT*GONUL ARISOY*H2409510257244",
"bank_reference_code": "14245009333320240903080248280"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 14:10:44",
"channel_branch": "Internet",
"currency_value": -4.43,
"balance": 7086.77,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "UCRET H2409506719897 400,00 TRY UZ.",
"bank_reference_code": "14245009333320240902141044847"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 14:10:44",
"channel_branch": "Internet",
"currency_value": -400.0,
"balance": 7091.2,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "HUSEYIN OZCAN*TR100001000840498883965016*3 ve 4 daireler su hatti*1752917929 H2409506719897*FAST",
"bank_reference_code": "14245009333320240902141044846"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 14:10:07",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 7491.2,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "DAMLA GORMEZOGLU*0099*6 nolu daire eylul 24 ayi aidati*24163547299*FAST",
"bank_reference_code": "14245009333320240902141007865"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 10:32:07",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 5991.2,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2 nolu daire EYLUL 2024 aidat*SONGUL VAR*H2409504972565",
"bank_reference_code": "14245009333320240902103207352"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-02 08:37:07",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 4591.2,
"additional_balance": 0,
"process_name": "E9",
"process_type": "EFT",
"process_comment": "ELIFCAN DEMIRTAS*0062*CEP-EFTEMRI-*0300640",
"bank_reference_code": "14245009333320240902083707644"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-01 22:52:21",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 3091.2,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "EYLUL AIDAT DAIRE 12*GIZEM CEKER*H2409503213939",
"bank_reference_code": "14245009333320240901225221518"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-29 09:28:53",
"channel_branch": "Sistem",
"currency_value": -166.5,
"balance": 1591.2,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TN2024000515935/K:00717",
"bank_reference_code": "14245009333320240829092853445"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-27 10:47:50",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 1757.7,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "MUSTAFA EDEPLI 11/11 AGUSTOS AIDAT*ALI IHSAN EDEPLI*H2408484021293",
"bank_reference_code": "14245009333320240827104750517"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-20 13:53:18",
"channel_branch": "Sube:4245",
"currency_value": -8000.0,
"balance": 257.7,
"additional_balance": 0,
"process_name": "CK",
"process_type": "Para Cekme",
"process_comment": "tadilat bedeli",
"bank_reference_code": "14245009333320240820135318371"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-20 13:38:32",
"channel_branch": "Sube:4245",
"currency_value": 585.0,
"balance": 8257.7,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "daire 1 onarim bedeli*MUBERRA BALTACI*H2408457257138",
"bank_reference_code": "14245009333320240820133832143"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-08-20 13:32:42",
"channel_branch": "Sube:4245",
"currency_value": 3000.0,
"balance": 7672.7,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "1 nolu daire temmuz ve agustos ayi aidatlari*MUBERRA BALTACI*H2408457223540",
"bank_reference_code": "14245009333320240820133242379"
}
]
}
}

View File

@ -0,0 +1,32 @@
{
"2024-09-27 06:15:04.099543": {
"42450093333_20240921_09030597_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-20 09:00:18",
"channel_branch": "IsCep",
"currency_value": 10370.0,
"balance": 17447.91,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "EYLUL DAHIL GECMIS DONEM AIDAT BORCU. DAIRE NO 5*CAGLAR CELIK*H2409588422004",
"bank_reference_code": "14245009333320240920090018810"
}
],
"42450093333_20240927_09032456_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-27 06:52:32",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 18947.91,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "MUSTAFA EDEPLI 11/11 EYLUL AIDAT BEDELI*ALI IHSAN EDEPLI*H2409616548251",
"bank_reference_code": "14245009333320240927065232251"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-09-30 06:15:04.477807": {
"42450093333_20240930_09022483_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-29 18:54:26",
"channel_branch": "POS",
"currency_value": -510.0,
"balance": 18437.91,
"additional_balance": 0,
"process_name": "DU",
"process_type": "POS",
"process_comment": "99 SUMELA ET LOKANTA ANKARA 0412",
"bank_reference_code": "14245009333320240929185426226"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-10-01 06:15:04.017496": {
"42450093333_20241001_09025949_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-09-30 10:47:39",
"channel_branch": "Sistem",
"currency_value": -129.9,
"balance": 18308.01,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TF2024000584212/K:00717",
"bank_reference_code": "14245009333320240930104739369"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-10-02 06:15:03.990116": {
"42450093333_20241002_09023609_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-01 09:52:18",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 19808.01,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "ELIFCAN DEMIRTAS*0062**6305000075*FAST",
"bank_reference_code": "14245009333320241001095218142"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-01 13:12:55",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 21208.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2NOLU DAIRE EKIM 2024 AIDAT*SONGUL VAR*H2410634417133",
"bank_reference_code": "14245009333320241001131255044"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-10-03 06:15:04.530435": {
"42450093333_20241003_09022282_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-02 20:14:29",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 22708.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "EKIM AIDAT DAIRE 12*GIZEM CEKER*H2410641583902",
"bank_reference_code": "14245009333320241002201429733"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-03 08:02:18",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 24208.01,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "GONUL ARISOY- AIDAT*GONUL ARISOY*H2410642500791",
"bank_reference_code": "14245009333320241003080218407"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-10-04 06:15:03.829210": {
"42450093333_20241004_09022439_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-03 13:45:57",
"channel_branch": "Internet",
"currency_value": -19400.0,
"balance": 4808.01,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "BASKENT DOGALGAZ DAGITIM GYO A.S.*TR640001001753485604975451*100000420500 soz - 023418 nolu Dogal gaz sayac gaz alim bedeli Gunes Apt Cankaya*1828523256 H2410644029163*FAST",
"bank_reference_code": "14245009333320241003134557846"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-03 13:45:57",
"channel_branch": "Internet",
"currency_value": -8.86,
"balance": 4799.15,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "UCRET H2410644029163 19400,00 TRY UZ.",
"bank_reference_code": "14245009333320241003134557847"
}
]
}
}

View File

@ -0,0 +1,42 @@
{
"2024-10-07 06:15:04.020055": {
"42450093333_20241007_09025863_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-06 09:24:24",
"channel_branch": "Sistem",
"currency_value": 3000.0,
"balance": 7799.15,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "DAMLA GORMEZOGLU*0099*6 nolu daire ekim ve kasim 2024 aylari aidati*24174619628*FAST",
"bank_reference_code": "14245009333320241006092424383"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-07 08:31:36",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 3049.15,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0002278",
"bank_reference_code": "14245009333320241007083136000"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-07 08:31:36",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 3040.29,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0002278* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320241007083136001"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-10-15 06:15:04.488665": {
"42450093333_20241015_09023036_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-15 06:58:29",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 4540.29,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2024 EKIM AYI AIDAT ODEMESI*HASAN CIHAN SENKUCUK*H2410696477559",
"bank_reference_code": "14245009333320241015065829039"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-15 08:05:02",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 6040.29,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "muberra baltaci daire 1 yakit bedeli*MUBERRA BALTACI*H2410696829537",
"bank_reference_code": "14245009333320241015080502452"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-10-17 06:15:04.075118": {
"42450093333_20241017_09011886_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-17 07:28:12",
"channel_branch": "Internet",
"currency_value": 750.0,
"balance": 6790.29,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "AIDAT BEDELI*MEHMET KARATAY*H2410708954203",
"bank_reference_code": "14245009333320241017072812275"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-17 08:24:19",
"channel_branch": "Sistem",
"currency_value": -291.36,
"balance": 6498.93,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "0237990 /A.S.K.I /FATURA NO:02379902410 /K:00092",
"bank_reference_code": "14245009333320241017082419141"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-10-18 06:15:04.242610": {
"42450093333_20241018_09030643_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-17 22:34:26",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 7998.93,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "Osman Kilinc*0111*osman kilinc - 2024 - ekim*8614131*FAST",
"bank_reference_code": "14245009333320241017223426908"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-10-28 06:15:04.463398": {
"42450093333_20241028_09014873_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-27 09:01:31",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 9498.93,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "MUSTAFA EDEPLI NO/11 EKIM AIDAT BEDELI*ALI IHSAN EDEPLI*H2410750241825",
"bank_reference_code": "14245009333320241027090131930"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-10-30 06:30:04.302694": {
"42450093333_20241030_09012358_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-29 10:11:47",
"channel_branch": "POS",
"currency_value": -250.0,
"balance": 9248.93,
"additional_balance": 0,
"process_name": "DU",
"process_type": "POS",
"process_comment": "BELPLAS ANKARA TERM.A.S ANKARA 0412",
"bank_reference_code": "14245009333320241029101147526"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-10-31 06:15:03.846287": {
"42450093333_20241031_09022824_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-30 14:53:01",
"channel_branch": "Sistem",
"currency_value": -200.0,
"balance": 9048.93,
"additional_balance": 0,
"process_name": "PH",
"process_type": "Fatura",
"process_comment": "1995093900 /ENERJISAPS/FATURA NO:1TK2024000657106/K:00717",
"bank_reference_code": "14245009333320241030145301284"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-11-01 06:15:03.948089": {
"42450093333_20241101_09013385_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-10-31 13:54:02",
"channel_branch": "IsCep",
"currency_value": 1500.0,
"balance": 10548.93,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "KASIM AIDAT DAIRE12*GIZEM CEKER*H2410765142070",
"bank_reference_code": "14245009333320241031135402919"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-11-02 06:15:03.855929": {
"42450093333_20241102_09030820_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-11-01 12:33:04",
"channel_branch": "IsCep",
"currency_value": 1400.0,
"balance": 11948.93,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "2 nolu daire Kasim 2024 aidat*SONGUL VAR*H2411770626917",
"bank_reference_code": "14245009333320241101123304958"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-11-01 15:50:03",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 13448.93,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "ELIFCAN DEMIRTAS*0062**4010000308*FAST",
"bank_reference_code": "14245009333320241101155003291"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-11-04 06:15:03.977873": {
"42450093333_20241104_09011503_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-11-04 08:03:01",
"channel_branch": "Sistem",
"currency_value": 1500.0,
"balance": 14948.93,
"additional_balance": 0,
"process_name": "0S",
"process_type": "Havale",
"process_comment": "GONUL ARISOY- AIDAT*GONUL ARISOY*H2411780299886",
"bank_reference_code": "14245009333320241104080301756"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-11-06 06:15:04.717878": {
"42450093333_20241106_09022713_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-11-06 08:31:11",
"channel_branch": "Sistem",
"currency_value": -4750.0,
"balance": 10198.93,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "MUNEVVER OZDEN*TR450006200059600006633380*GUNES APT*0000384",
"bank_reference_code": "14245009333320241106083111113"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-11-06 08:31:11",
"channel_branch": "Sistem",
"currency_value": -8.86,
"balance": 10190.07,
"additional_balance": 0,
"process_name": "EF",
"process_type": "EFT",
"process_comment": "EFT Ucret*SRG0000384* 8,86TL*MAKTU**+BSMV 4245/3929921 *MUH.H",
"bank_reference_code": "14245009333320241106083111113"
}
]
}
}

View File

@ -0,0 +1,30 @@
{
"2024-11-08 06:15:04.221012": {
"42450093333_20241108_09025462_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-11-07 12:05:45",
"channel_branch": "Internet",
"currency_value": -10000.0,
"balance": 190.07,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "BASKENT DOGALGAZ DAGITIM GYO A.S.*TR640001001753485604975451*100000420500 soz - 023418 nolu Dogal gaz sayac gaz alim bedeli Gunes Apt Cankaya*1913387275 H2411798769360*FAST",
"bank_reference_code": "14245009333320241107120545274"
},
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-11-07 12:05:45",
"channel_branch": "Internet",
"currency_value": -8.86,
"balance": 181.21,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "UCRET H2411798769360 10000,00 TRY UZ.",
"bank_reference_code": "14245009333320241107120545275"
}
]
}
}

View File

@ -0,0 +1,18 @@
{
"2024-11-09 06:15:03.911870": {
"42450093333_20241109_09025484_HesapOzeti.xls": [
{
"iban": "TR400006400000142450093333",
"bank_date": "2024-11-08 20:18:00",
"channel_branch": "Sistem",
"currency_value": 5600.0,
"balance": 5781.21,
"additional_balance": 0,
"process_name": "FA",
"process_type": "FAST",
"process_comment": "DOGUKAN KAYA*0111*Dagire 3 eylul ekim kasim aralik aylari icin aidat odemesi*85888384*FAST",
"bank_reference_code": "14245009333320241108201800263"
}
]
}
}

View File

@ -0,0 +1,3 @@
echo "*/15 * * * * /usr/bin/python3 /home/bank/isbank/main.py >> /var/log/cron.log 2>&1" > /tmp/crontab_list && crontab /tmp/crontab_list
cron
tail -f /var/log/cron.log

Some files were not shown because too many files have changed in this diff Show More