Files
centurion_erp/app/access/models/organization_history.py

54 lines
1003 B
Python

from django.db import models
from core.models.model_history import ModelHistory
from access.models.tenant import Tenant
class OrganizationHistory(
ModelHistory
):
class Meta:
db_table = 'access_organization_history'
ordering = ModelHistory._meta.ordering
verbose_name = 'Organization History'
verbose_name_plural = 'Organization History'
model = models.ForeignKey(
Tenant,
blank = False,
help_text = 'Model this note belongs to',
null = False,
on_delete = models.CASCADE,
related_name = 'history',
verbose_name = 'Model',
)
table_fields: list = []
page_layout: dict = []
def get_object(self):
return self
def get_serialized_model(self, serializer_context):
model = None
from access.serializers.organization import TenantBaseSerializer
model = TenantBaseSerializer(self.model, context = serializer_context)
return model