コード例 #1
0
ファイル: models.py プロジェクト: ainomugish/prometeo-erp
 def __init__(self, *args, **kwargs):
     super(Project, self).__init__(*args, **kwargs)
     assign_code(self)
コード例 #2
0
ファイル: models.py プロジェクト: ainomugish/prometeo-erp
 def __init__(self, *args, **kwargs):
     super(Milestone, self).__init__(*args, **kwargs)
     assign_code(self)
コード例 #3
0
 def __init__(self, *args, **kwargs):
     super(Document, self).__init__(*args, **kwargs)
     if self.content_type:
         assign_code(
             self, Document.objects.filter(content_type=self.content_type))
コード例 #4
0
ファイル: models.py プロジェクト: ainomugish/prometeo-erp
 def __init__(self, *args, **kwargs):
     super(Document, self).__init__(*args, **kwargs)
     if self.content_type:
         assign_code(self, Document.objects.filter(content_type=self.content_type))
コード例 #5
0
ファイル: models.py プロジェクト: bryanriosb/PERP
 def __init__(self, *args, **kwargs):
     super(Project, self).__init__(*args, **kwargs)
     assign_code(self)
コード例 #6
0
ファイル: models.py プロジェクト: bryanriosb/PERP
 def __init__(self, *args, **kwargs):
     super(Milestone, self).__init__(*args, **kwargs)
     assign_code(self)