Skip to content

Commit

Permalink
Actually, internal_flag is always true
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Fox committed Oct 4, 2024
1 parent 8ecd75e commit ae1527b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions djconnectwise/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1860,8 +1860,7 @@ def change_sla_state(self, new_stage, calendar, sla):

class NonInternalNoteManager(models.Manager):
def get_queryset(self):
return super().get_queryset(). \
exclude(Q(internal_analysis_flag=True) | Q(internal_flag=True))
return super().get_queryset().exclude(internal_analysis_flag=True)


class ServiceNote(UpdateRecordMixin, TimeStampedModel):
Expand Down

0 comments on commit ae1527b

Please sign in to comment.