movable-model qoshildi bu (Ko'char mulk) modeli to'liq va optimallashgan holda tayyor!

This commit is contained in:
Husanjonazamov
2026-02-13 17:57:56 +05:00
parent 7d975a0acc
commit 2cb094cbd3
27 changed files with 349 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
from .auto import * # noqa
from .customer import * # noqa
from .movable 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 MovablePropertyEvaluationModel
@receiver(post_save, sender=MovablePropertyEvaluationModel)
def MovablepropertyevaluationSignal(sender, instance, created, **kwargs): ...