def supervision_reminder_sent(self): return list( sps_with_status( sps=self.dg.submitting(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.SUPERVISION_FACILITY, status_value=SupplyPointStatusValues.REMINDER_SENT))
def supervision_not_received(self): return list( sps_with_status( sps=self.dg.submitting(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.SUPERVISION_FACILITY, status_value=SupplyPointStatusValues.NOT_RECEIVED))
def supervision_received(self): return list(sps_with_status(sps=self.dg.submitting(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.SUPERVISION_FACILITY, status_value=SupplyPointStatusValues.RECEIVED))
def supervision_reminder_sent(self): return list(sps_with_status(sps=self.dg.submitting(self.facilities), year=self.year, month=self.month, status_type=SupplyPointStatusTypes.SUPERVISION_FACILITY, status_value=SupplyPointStatusValues.REMINDER_SENT))