ValuationDocumentModel

— bu arizaga biriktiriladigan hujjatlar va rasmlar uchun kerak
This commit is contained in:
Husanjonazamov
2026-02-18 17:56:51 +05:00
parent 88bcbc07bd
commit 4680581e8d
27 changed files with 345 additions and 0 deletions

View File

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