refactor: rename
This commit is contained in:
		@@ -287,10 +287,10 @@ class AdoptionNotice(models.Model):
 | 
				
			|||||||
        return self.adoptionnoticestatus.is_active
 | 
					        return self.adoptionnoticestatus.is_active
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @property
 | 
					    @property
 | 
				
			||||||
    def is_to_be_checked(self, include_active=False):
 | 
					    def is_disabled_unchecked(self):
 | 
				
			||||||
        if not hasattr(self, 'adoptionnoticestatus'):
 | 
					        if not hasattr(self, 'adoptionnoticestatus'):
 | 
				
			||||||
            return False
 | 
					            return False
 | 
				
			||||||
        return self.adoptionnoticestatus.is_to_be_checked or (include_active and self.adoptionnoticestatus.is_active)
 | 
					        return self.adoptionnoticestatus.is_disabled_unchecked
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def set_closed(self):
 | 
					    def set_closed(self):
 | 
				
			||||||
        self.last_checked = timezone.now()
 | 
					        self.last_checked = timezone.now()
 | 
				
			||||||
@@ -367,7 +367,7 @@ class AdoptionNoticeStatus(models.Model):
 | 
				
			|||||||
        return self.major_status == self.ACTIVE
 | 
					        return self.major_status == self.ACTIVE
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @property
 | 
					    @property
 | 
				
			||||||
    def is_to_be_checked(self):
 | 
					    def is_disabled_unchecked(self):
 | 
				
			||||||
        return self.major_status == self.DISABLED and self.minor_status == "unchecked"
 | 
					        return self.major_status == self.DISABLED and self.minor_status == "unchecked"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @staticmethod
 | 
					    @staticmethod
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user