|
|
|
@ -49,6 +49,9 @@ class OrgModelMixin(models.Model):
|
|
|
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
|
org = get_current_org()
|
|
|
|
|
# 这里不可以优化成, 因为 root 组织下可以设置组织 id 来保存
|
|
|
|
|
# if org.is_root() and not self.org_id:
|
|
|
|
|
# raise ...
|
|
|
|
|
if org.is_root():
|
|
|
|
|
if not self.org_id:
|
|
|
|
|
raise ValidationError('Please save in a organization')
|
|
|
|
|