QuickEvaluationModel modeli qoshildi shu tezkor baholash uchun ishatiladi

This commit is contained in:
Husanjonazamov
2026-02-13 18:33:56 +05:00
parent 8c7861ca9f
commit 53b0737ee5
26 changed files with 359 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
from .auto import * # noqa
from .customer import * # noqa
from .movable import * # noqa
from .quick import * # noqa
from .real_estate import * # noqa
from .valuation import * # noqa
from .vehicle import * # noqa

View File

@@ -0,0 +1,8 @@
from django.db.models.signals import post_save
from django.dispatch import receiver
from core.apps.evaluation.models import QuickEvaluationModel
@receiver(post_save, sender=QuickEvaluationModel)
def QuickevaluationSignal(sender, instance, created, **kwargs): ...