feat(evaluation): baholash modellari yaratildi (auto, ko'chmas mulk, ko'char mulk, tezkor, hisobot)

This commit is contained in:
Husanjonazamov
2026-02-18 17:44:15 +05:00
parent 3ef3f8fd3f
commit 4ddd4f138f
26 changed files with 335 additions and 0 deletions

View File

@@ -3,5 +3,6 @@ from .customer import * # noqa
from .movable import * # noqa
from .quick import * # noqa
from .real_estate import * # noqa
from .report 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 EvaluationReportModel
@receiver(post_save, sender=EvaluationReportModel)
def EvaluationreportSignal(sender, instance, created, **kwargs): ...