Files
RasadDam_Backend/apps/pos_device/services/helper_service.py
2025-08-18 10:08:33 +03:30

12 lines
300 B
Python

import typing
def get_device_organization(assignment: object = None, device_serial: str = None) -> typing.Any:
""" get device owner (organization) information """
organization = assignment.objects.filter( # noqa
device__serial=device_serial
).first()
return organization